-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathApp.js
91 lines (82 loc) · 2.06 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
import React, {Component} from 'react';
import {StatusBar} from 'react-native';
import auth from '@react-native-firebase/auth';
import SplashScreen from 'react-native-splash-screen';
import {NavigationContainer} from '@react-navigation/native';
import {createStackNavigator} from '@react-navigation/stack';
// importing screens
import UserStarting from './src/screens/UserStarting.js';
import GameHome from './src/screens/GameHome.js';
import Play from './src/screens/Play.js';
import LeaderBoard from './src/screens/Leaderboard.js';
const Stack = createStackNavigator();
class DefaultStack extends Component {
constructor(props) {
super(props);
this.state = {
isSigned: false,
};
}
componentDidMount() {
auth().onAuthStateChanged(user => {
this.setState({isSigned: user ? true : false});
SplashScreen.hide();
});
}
render() {
const {isSigned} = this.state;
return isSigned ? (
<Stack.Navigator
options={{
animationEnabled: false,
}}
initialRouteName="Home"
headerMode="none">
<Stack.Screen
options={{
animationEnabled: false,
}}
name="Home"
component={GameHome}
/>
<Stack.Screen
options={{
animationEnabled: false,
}}
name="Play"
component={Play}
/>
<Stack.Screen
options={{
animationEnabled: false,
}}
name="LeaderBoard"
component={LeaderBoard}
/>
</Stack.Navigator>
) : (
<Stack.Navigator
options={{
animationEnabled: false,
}}
initialRouteName="Home"
headerMode="none">
<Stack.Screen
options={{
animationEnabled: false,
}}
name="Start"
component={UserStarting}
/>
</Stack.Navigator>
);
}
}
export default function App() {
return (
<NavigationContainer>
<StatusBar hidden={true} />
<DefaultStack />
</NavigationContainer>
);
}