Lines Matching refs:Stack
2 title: Stack
3 description: Learn how to use the Stack Layout in Expo Router.
10 …Stack` Layout in Expo Router wraps the [Native Stack Navigator](https://reactnavigation.org/docs/n…
14 To create a `Stack` layout with two screens as shown in the file structure above:
17 import { Stack } from 'expo-router/stack';
20 return <Stack />;
29 import { Stack } from 'expo-router';
33 <Stack
51 import { Link, Stack } from 'expo-router';
66 <Stack.Screen
91 import { Stack, useLocalSearchParams, useRouter } from 'expo-router';
99 <Stack.Screen
121 You can use the `<Stack.Screen name={routeName} />` component in the layout component route to stat…
124 import { Stack } from 'expo-router';
128 <Stack
143 <Stack.Screen name="home" options={{}} />
145 </Stack>
150 Use the `<Stack.Screen />` component in the child route to dynamically configure options.
155 import { Stack } from 'expo-router';
173 <Stack.Screen
188 …Stack` will deduplicate pages when pushing a route that is already in the stack. For example, if y…
192 You can use the `<Stack.Screen name="[user]" getId={} />` component in the layout component route t…
195 import { Stack } from 'expo-router';
199 <Stack>
200 <Stack.Screen
206 </Stack>
214 title="Native Stack Navigator: Options"