react-native-actions-sheet icon indicating copy to clipboard operation
react-native-actions-sheet copied to clipboard

Is something similar to react-native's Modal presentationStyle="pageSheet" supported?

Open DeluxeOwl opened this issue 1 year ago • 1 comments

Basically, that iOS only animation for modals, what you can see here at 4:49 - 4:52 https://youtu.be/EcIA3nfNbsg?t=290

DeluxeOwl avatar Mar 20 '24 20:03 DeluxeOwl

@DeluxeOwl You'll have to build your own custom behavior, I believe. Have a wrapper around your main screen/background/navigator, have a global listener that subscribes to a show/hide event on the sheet (via onBeforeShow and onBeforeClose). Then change the listener properties animate the scale down for the main screen to about 0.92 or so and opacity to 0.5 when showing and reset to scale 1 and opacity 1 when closed. That should do the trick

kotchere avatar Apr 19 '24 19:04 kotchere