react-native-actions-sheet
react-native-actions-sheet copied to clipboard
A Cross Platform(Android, iOS & Web) ActionSheet with a flexible api, native performance and zero dependency code for react native. Create anything you want inside ActionSheet.
Is not a class component demo?
Is there any way how to draw some element on top border like this?  After a few tries i achieved 
The cause is here: https://github.com/ammarahm-ed/react-native-actions-sheet/commit/7fa623da8c7ff3e8e51a8cf68e8a4ff125b59aeb#r103324610. Unfortunately that commit does not provide any context for the change. Setting `overflow` as `'visible'` fixes the issue but I was hoping @ammarahm-ed could add...
Bottom sheets rendered as normal component and showed by ref.current.show() are not draggable
the below is the code ```typescript /** * @format */ import {StrictMode} from 'react'; import {NavigationContainer} from '@react-navigation/native'; import createCustomNavigator, {Screens} from '@navigator'; import {ThemeProvider} from '@theme'; import {SheetProvider} from...
Closing the action sheet is causing the below bounce on Android only. On iOS the close is smooth and normal. Am i missing something with this? Thanks Using version `0.8.10`...
Is there any way to show the confirmation sheet in the center of the screen and allow close when pressing on backdrop?
How can I add custom back button handler for 'hardwareBackPress' event in the action sheet? The ActionSheet component seems not to provide such a prop for adding the custom back...