-
Hi 👋 As far as I understand to use "react-native-screens" with "react-navigation" I should use native stack and just install "react-native-screens" package. But how I can use "react-native-screens" options for screens? Like |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @Crysp,
That's right.
the prop you are interested in Tag me if there are any follow up questions so that I notice. |
Beta Was this translation helpful? Give feedback.
Hi @Crysp,
That's right.
react-navigation
's native stack usesreact-native-screens
primitives under the hood, so when you set props in JSreact-navigation
all the native ones are passed toreact-native-screens
native components. Example: when you setpresentation: 'modal'
onreact-navigation
'sScreen
it is passed to native screen component asstackPresentation: 'modal'
.the prop you are interested in
sheetAllowedDetents
has no…