-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.tsx
36 lines (33 loc) · 1.05 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 React from 'react'
import AppContainer from './src/navigations/AppContainer'
import { Provider } from 'react-redux'
import { ReactReduxFirebaseProvider } from 'react-redux-firebase'
import { AppLoading } from 'expo'
import * as Font from 'expo-font'
import { Ionicons } from '@expo/vector-icons'
import store from './src/store'
import { reactReduxFirebaseProps } from './src/store/index'
import FirestoreProvider from './src/plugins/FirestoreProvider'
export default () => {
const [isReady, setIsReady] = React.useState(false)
React.useEffect(() => {
Font.loadAsync({
Roboto: require('native-base/Fonts/Roboto.ttf'),
Roboto_medium: require('native-base/Fonts/Roboto_medium.ttf'),
...Ionicons.font
}).then(() => {
setIsReady(true)
})
}, [])
return !isReady ? (
<AppLoading />
) : (
<Provider store={store}>
<ReactReduxFirebaseProvider {...reactReduxFirebaseProps}>
<FirestoreProvider>
<AppContainer />
</FirestoreProvider>
</ReactReduxFirebaseProvider>
</Provider>
)
}