()
| 9 | const Stack = createNativeStackNavigator(); |
| 10 | |
| 11 | export default function AllPages() { |
| 12 | return ( |
| 13 | <NavigationContainer> |
| 14 | <Stack.Navigator |
| 15 | screenOptions={{ |
| 16 | headerShown: false, |
| 17 | }} |
| 18 | > |
| 19 | <Stack.Screen name="Start" component={Start} /> |
| 20 | <Stack.Screen name="AppExplanation" component={AppExplanation} /> |
| 21 | <Stack.Screen name="Home" component={Home} /> |
| 22 | <Stack.Screen name="HabitPage" component={HabitPage} /> |
| 23 | </Stack.Navigator> |
| 24 | </NavigationContainer> |
| 25 | ); |
| 26 | } |
nothing calls this directly
no outgoing calls
no test coverage detected