-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStackNavigator.js
More file actions
36 lines (31 loc) · 1.33 KB
/
StackNavigator.js
File metadata and controls
36 lines (31 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import { StyleSheet, Text, View } from 'react-native';
import React from 'react';
import { NavigationContainer } from '@react-navigation/native';
import { createNativeStackNavigator } from '@react-navigation/native-stack';
import HomeScreen from './src/screens/home/Home.screen';
import Exercises from './src/screens/exercise/Exercises.screen';
import ActiveExerciseScreen from './src/screens/active-exercise/ActiveExercise.screen';
import RestScreen from './src/screens/rest/Rest.screen';
const Stack = createNativeStackNavigator();
const StackNavigator = () => {
return (
<NavigationContainer>
<Stack.Navigator>
<Stack.Screen name='Home' component={HomeScreen} options={{ headerShown: false }} />
<Stack.Screen
name='Exercises'
component={Exercises}
options={{ headerShown: false }}
/>
<Stack.Screen
name='ActiveExercise'
component={ActiveExerciseScreen}
options={{ headerShown: false }}
/>
<Stack.Screen name='Rest' component={RestScreen} options={{ headerShown: false }} />
</Stack.Navigator>
</NavigationContainer>
);
};
export default StackNavigator;
const styles = StyleSheet.create({});