How to add a bottom modal in React Native
I made a small proof of concept on how to add a bottom modal to your react-native projects. I struggled quite a while on this because I didn’t really know what to do.
The trick is to separate the view where the modal lives and add a flex-end
to that and then add the styling to the modal in another view. Hope this
helps.
Here’s what it looks like:
The code can be found here.
Comments