aksonov / react-native-router-flux

The first declarative React Native router
MIT License
8.99k stars 2.11k forks source link

How to make iOS 13 modals with RNRF? #3625

Open jeanlucdu55 opened 4 years ago

jeanlucdu55 commented 4 years ago

I didn't find anything about that,

Is there a way to make an iOS 13 modal with RNRF?

Like this:

image

Thanks!

athomaj commented 4 years ago

any solutions to have these modals?

jeanlucdu55 commented 4 years ago

Hey @athomaj I did it with Modal from react-native, you just have to do that:

  <Modal
    presentationStyle={'formSheet'}
    animationType="slide"
    visible={isVisible}
    onDismiss={onClose}>

:)

ninacoder-info commented 4 years ago

Hey @athomaj I did it with Modal from react-native, you just have to do that:

  <Modal
    presentationStyle={'formSheet'}
    animationType="slide"
    visible={isVisible}
    onDismiss={onClose}>

:)

Can you give some explain, I added some tag like you but not work with the router flux

imyuanx commented 2 years ago

Any more information? I'm trying react-native 0.6.3 but doesn't work