-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
36 lines (34 loc) · 1.1 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
import { StatusBar } from "expo-status-bar";
import React from "react";
import { SafeAreaView, StyleSheet, View } from "react-native";
import { NavigationContainer } from "@react-navigation/native";
import { createStackNavigator } from "@react-navigation/stack";
import Home from "./src/modules/home";
import Start from "./src/modules/start";
const Stack = createStackNavigator();
export default function App() {
return (
<SafeAreaView style={styles.safeAreaViewStyle}>
<View style={styles.container}>
<StatusBar style="auto" />
{/* In a real project you would create a navigation folder, its an overkill for this context */}
<NavigationContainer>
<Stack.Navigator initialRouteName="Start">
<Stack.Screen name="Start" component={Start} />
<Stack.Screen name="Game" component={Home} />
</Stack.Navigator>
</NavigationContainer>
</View>
</SafeAreaView>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#fff",
},
safeAreaViewStyle: {
flex: 1,
backgroundColor: "#fff",
},
});