30 items
Missing NavigationContainer Wrapper
Code QuizReact Navigation vs Native Navigation
QuizFixing useNavigation Import
Code QuizNative Stack vs JS Stack Navigator
Slides / VideoPassing Params to a Route
Code QuizCreating a Drawer Navigator
Code QuizHardware Back Button Handling
Code QuizHandling Focus with useFocusEffect
Code QuizDefining Screens with Stack.Screen
Code QuizTypeScript Typing for Params
Code QuizCreating a Bottom Tab Navigator
Code QuizCustom Header Right Button
Code QuizReading Route Params
Code QuizConfiguring Initial Route
Code QuizPassing Params Back to Previous Screen
Code QuizNavigating Between Screens
Code QuizCreating a Stack Navigator
Code QuizDynamic Header with setOptions
Code QuizGoing Back with goBack
Code QuizNavigating to Nested Screen
Code QuizNesting Stack Inside Tabs
Code QuizModal Presentation with Stack
Code QuizNavigationContainer Root Wrapper
Code QuizUsing the useRoute Hook
Code Quizpush vs navigate Behavior
Code QuizCustomizing Tab Icons and Labels
Code QuizResetting Navigation State
Code QuizSetting Screen Options
Code Quizreplace vs navigate
Code QuizInstalling React Navigation Dependencies
Code QuizModal Presentation with Stack
Find why the screen slides from the side instead of as a modal.
<Stack.Screen
name="NewMessage"
component={NewMessageScreen}
options={{ mode: 'modal' }}
/>What is the bug in this code?