Stack Navigator
Stack Navigator provides a way for your app to transition between screens where each new screen is placed on top of a stack.
By default the stack navigator is configured to have the familiar iOS and Android look & feel: new screens slide in from the right on iOS, use OS default animation on Android. But the animations can be customized to match your needs.
One thing to keep in mind is that while @react-navigation/stack
is extremely customizable, it's implemented in JavaScript. While it runs animations and gestures using natively, the performance may not be as fast as a native implementation. This may not be an issue for a lot of apps, but if you're experiencing performance issues during navigation, consider using @react-navigation/native-stack
instead - which uses native navigation primitives.
Installation
To use this navigator, ensure that you have @react-navigation/native
and its dependencies (follow this guide), then install @react-navigation/stack
:
- npm
- Yarn
- pnpm
npm install @react-navigation/stack@next
yarn add @react-navigation/stack@next
pnpm add @react-navigation/stack@next
Then, you need to install and configure the libraries that are required by the stack navigator:
-
First, install
react-native-gesture-handler
.If you have a Expo managed project, in your project directory, run:
npx expo install react-native-gesture-handler
If you have a bare React Native project, in your project directory, run:
- npm
- Yarn
- pnpm
npm install react-native-gesture-handler
yarn add react-native-gesture-handler
pnpm add react-native-gesture-handler
-
To finalize installation of
react-native-gesture-handler
, add the following at the top (make sure it's at the top and there's nothing else before it) of your entry file, such asindex.js
orApp.js
:import 'react-native-gesture-handler';
warningIf you are building for Android or iOS, do not skip this step, or your app may crash in production even if it works fine in development. This is not applicable to other platforms.
-
Optionally, you can also install
@react-native-masked-view/masked-view
. This is needed if you want to use UIKit style animations for the header (HeaderStyleInterpolators.forUIKit
).If you have a Expo managed project, in your project directory, run:
npx expo install @react-native-masked-view/masked-view
If you have a bare React Native project, in your project directory, run:
- npm
- Yarn
- pnpm
npm install @react-native-masked-view/masked-view
yarn add @react-native-masked-view/masked-view
pnpm add @react-native-masked-view/masked-view
-
If you're on a Mac and developing for iOS, you also need to install the pods (via Cocoapods) to complete the linking.
npx pod-install ios
API Definition
To use this navigator, import it from @react-navigation/stack
:
import { createStackNavigator } from '@react-navigation/stack';
const Stack = createStackNavigator();
function MyStack() {
return (
<Stack.Navigator>
<Stack.Screen name="Home" component={Home} />
<Stack.Screen name="Notifications" component={Notifications} />
<Stack.Screen name="Profile" component={Profile} />
<Stack.Screen name="Settings" component={Settings} />
</Stack.Navigator>
);
}
Props
The Stack.Navigator
component accepts following props:
id
Optional unique ID for the navigator. This can be used with navigation.getParent
to refer to this navigator in a child navigator.
initialRouteName
The name of the route to render on first load of the navigator.
screenOptions
Default options to use for the screens in the navigator.
detachInactiveScreens
Boolean used to indicate whether inactive screens should be detached from the view hierarchy to save memory. This enables integration with react-native-screens. Defaults to true
.
If you need to disable this optimization for specific screens (e.g. you want to screen to stay in view even when unfocused) detachPreviousScreen
option.
keyboardHandlingEnabled
If false
, the keyboard will NOT automatically dismiss when navigating to a new screen from this screen. Defaults to true
.
Options
The following options can be used to configure the screens in the navigator. These can be specified under screenOptions
prop of Stack.navigator
or options
prop of Stack.Screen
.
title
String that can be used as a fallback for headerTitle
.
cardShadowEnabled
Use this prop to have visible shadows during transitions. Defaults to true
.
cardOverlayEnabled
Use this prop to have a semi-transparent dark overlay visible under the card during transitions. Defaults to true
on Android and false
on iOS.
cardOverlay
Function which returns a React Element to display as the overlay for the card. Make sure to set cardOverlayEnabled
to true
when using this.
cardStyle
Style object for the card in stack. You can provide a custom background color to use instead of the default background here.
You can also specify { backgroundColor: 'transparent' }
to make the previous screen visible underneath (for transparent modals). This is useful to implement things like modal dialogs. You should also specify presentation: 'modal'
in the options when using a transparent background so previous screens aren't detached and stay visible underneath.
On Web, the height of the screen isn't limited to the height of the viewport. This is by design to allow the browser's address bar to hide when scrolling. If this isn't desirable behavior, you can set cardStyle
to { flex: 1 }
to force the screen to fill the viewport.
presentation
This is shortcut option which configures several options to configure the style for rendering and transitions:
card
: Use the default OS animations for iOS and Android screen transitions.modal
: Use Modal animations. This changes a few things:- Sets
headerMode
toscreen
for the screen unless specified otherwise. - Changes the screen animation to match the platform behavior for modals.
- Sets
transparentModal
: Similar tomodal
. This changes following things:- Sets
headerMode
toscreen
for the screen unless specified otherwise. - Sets background color of the screen to transparent, so previous screen is visible
- Adjusts the
detachPreviousScreen
option so that the previous screen stays rendered. - Prevents the previous screen from animating from its last position.
- Changes the screen animation to a vertical slide animation.
- Sets
See Transparent modals for more details on how to customize transparentModal
.
animationEnabled
Whether transition animation should be enabled on the screen. If you set it to false
, the screen won't animate when pushing or popping. Defaults to true
on iOS and Android, false
on Web.
animationTypeForReplace
The type of animation to use when this screen replaces another screen. It takes the following values:
push
- The animation of a new screen being pushed will be usedpop
- The animation of a screen being popped will be used
Defaults to push
.
When pop
is used, the pop
animation is applied to the screen being replaced.
gestureEnabled
Whether you can use gestures to dismiss this screen. Defaults to true
on iOS, false
on Android.
Gestures are not supported on Web.
gestureResponseDistance
Number to override the distance of touch start from the edge of the screen to recognize gestures.
It'll configure either the horizontal or vertical distance based on the gestureDirection
value.
The default values are:
50
- whengestureDirection
ishorizontal
orhorizontal-inverted
135
- whengestureDirection
isvertical
orvertical-inverted
This is not supported on Web.
gestureVelocityImpact
Number which determines the relevance of velocity for the gesture. Defaults to 0.3.
This is not supported on Web.
gestureDirection
Direction of the gestures. Refer the Animations section for details.
This is not supported on Web.
transitionSpec
Configuration object for the screen transition. Refer the Animations section for details.
cardStyleInterpolator
Interpolated styles for various parts of the card. Refer the Animations section for details.