-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.js
46 lines (38 loc) · 1.27 KB
/
App.js
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
37
38
39
40
41
42
43
44
45
46
import React from "react"
import { NavigationContainer } from "@react-navigation/native"
import { createStackNavigator } from "@react-navigation/stack"
import { StyleSheet, View, StatusBar } from "react-native"
import TodoList from "./src/components/TodoList/TodoList"
import { Provider } from "react-redux"
import { PersistGate } from "redux-persist/integration/react"
import reduxStore from "./src/redux/store"
import TaskPage from "./src/components/TaskPage/TaskPage"
export default function App() {
const { store, persistor } = reduxStore()
return (
<Provider store={store}>
<PersistGate loading={null} persistor={persistor}>
<Navigators />
</PersistGate>
</Provider>
)
}
const Navigators = () => {
const Stack = createStackNavigator()
return (
<NavigationContainer>
<View style={styles.container}>
<StatusBar backgroundColor="#2e2e2e" barStyle="light-content" />
<Stack.Navigator initialRouteName="TodoList" screenOptions={{ headerShown: false }}>
<Stack.Screen name="TodoList" component={TodoList} />
<Stack.Screen name="TaskPage" component={TaskPage} />
</Stack.Navigator>
</View>
</NavigationContainer>
)
}
const styles = StyleSheet.create({
container: {
flex: 1,
},
})