-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.js
42 lines (35 loc) · 946 Bytes
/
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
import { View } from 'react-native'
import { useEffect, useState } from 'react'
import 'react-native-gesture-handler'
import { SafeAreaProvider } from 'react-native-safe-area-context'
import Navigation from './navigation/Navigation'
import { auth } from './firebase'
import LoginScreen from './components/screens/LoginScreen'
import { GameProvider } from './context/GameContext'
export default function App() {
const [isLoading, setIsLoading] = useState(true)
const [user, setUser] = useState()
function onAuthStateChanged(user) {
setUser(user)
if (isLoading) setIsLoading(false)
}
useEffect(() => {
const unsubscribe = auth.onAuthStateChanged(onAuthStateChanged)
return unsubscribe
}, [])
if (isLoading) return null
if (!user) {
return (
<View style={{ flex: 1 }}>
<LoginScreen />
</View>
)
}
return (
<SafeAreaProvider>
<GameProvider>
<Navigation />
</GameProvider>
</SafeAreaProvider>
)
}