react-native-actions-sheet icon indicating copy to clipboard operation
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.

Results 155 react-native-actions-sheet issues
Sort by recently updated
recently updated
newest added

Is not a class component demo?

Is there any way how to draw some element on top border like this? ![image](https://user-images.githubusercontent.com/22296816/227983368-6b065bec-da74-48b5-8cb5-67cfb0449fb6.png) After a few tries i achieved ![image](https://user-images.githubusercontent.com/22296816/227983747-1f646e57-0ec1-444d-95de-6d5270cddcab.png)

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...