-
Notifications
You must be signed in to change notification settings - Fork 13
/
App.tsx
44 lines (41 loc) · 1.17 KB
/
App.tsx
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
import React from "react";
import { StatusBar } from "expo-status-bar";
import {
StyleSheet,
View,
SafeAreaView,
StatusBar as RNStatusBar,
} from "react-native";
import { Provider as PaperProvider } from "react-native-paper";
import { store } from "./Utils/store";
import { Provider } from "react-redux";
import RootNavigation from "./Navigation/RootNavigation";
// Uncomment ReduxStateTest to test various state actions and reducers
// import ReduxStateTest from "./Components/ReduxStateTest";
export default function App() {
return (
<Provider store={store}>
<PaperProvider>
<SafeAreaView style={styles.safeAreaContainer}>
<View style={styles.container}>
{/* Uncomment ReduxStateTest to test various state actions and reducers */}
{/* <ReduxStateTest /> */}
<RootNavigation />
</View>
<StatusBar style="auto" />
</SafeAreaView>
</PaperProvider>
</Provider>
);
}
const styles = StyleSheet.create({
safeAreaContainer: {
flex: 1,
paddingTop: RNStatusBar.currentHeight || 0,
},
container: {
justifyContent: "center",
height: "100%",
width: "100%",
},
});