Muhsin Life

Results 9 comments of Muhsin Life

```tsx import ActionSheet from "react-native-actions-sheet"; import { View, Text } from "@/components/ui"; export const ExampleSheet = () => { return ( Hello World ); }; ``` works for me

create a /ui/sheets.txt file or whatever u want to name it and ```tsx // /ui/sheets.txt import { ExampleSheet } from "../sheets"; import { registerSheet, SheetDefinition } from "react-native-actions-sheet"; registerSheet("example-sheet", ExampleSheet);...

can u give a minimal reproducible example?

please produce a minimum reproducible example