-
Notifications
You must be signed in to change notification settings - Fork 4
/
App.js
53 lines (36 loc) · 812 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
43
44
import React from 'react';
import {
View,
Text,
StatusBar,
} from 'react-native';
import AppContainer from "./Navigation/NavigationConfig";
import {init} from "./Screens/Database";
import SplashScreen from "./Screens/SplashScreen";
class App extends React.Component {
state = {
loaded:false,
}
componentDidMount = ()=>{
init();
setTimeout(this.loadApp,100);
}
loadApp = ()=>{
this.setState({
loaded:true
});
}
render(){
let component = <SplashScreen/>
if(this.state.loaded){
component = <AppContainer/>
}
return (
<View style={{backgroundColor:"#1a1a1a", flex:1}}>
<StatusBar backgroundColor='#1a1a1a' barStyle='light-content' />
{component}
</View>
)
}
}
export default App;