Mobile | Sun Jun 30 20242,248 views
React Navigation Form Sheet
Hi there!
In this video, we learn how to present a form sheet as well as all the properties we can use to achieve any use case.
Dependencies
This commands are for using the latest version of react navigation. For this to work just make sure you're using React Navigation v7 or later.
npm install @react-navigation/native@next @react-navigation/native-stack@next
Form Sheet Config
<Stack.Screen
name="NewPost"
component={NewPost}
options={{
presentation: "formSheet",
sheetAllowedDetents: "all",
sheetLargestUndimmedDetent: "all",
sheetGrabberVisible: true,
sheetCornerRadius: 30,
sheetExpandsWhenScrolledToEdge: true,
headerShown: true,
headerTitle: "New Post",
}}
/>
Links
Go back to Projects