-
Notifications
You must be signed in to change notification settings - Fork 1
/
App.js
38 lines (36 loc) · 830 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
import React , {Component} from 'react';
import {
View,
Text,
StatusBar,
} from 'react-native';
import SplashScreen from "./Screens/SplashScreen";
import AppContainer from "./Navigation/NavigationConfig";
class App extends Component {
state = {
loading:true,
}
componentDidMount = ()=>{
this.showApp();
}
showApp = ()=>{
setTimeout(()=>{
this.setState({
loading:false
});
},1500);
}
render() {
// const App = <SplashScreen/>
// if(!this.state.loading){
// App = <AppContainer/>
// }
return (
this.state.loading?<View style={{flex:1,justifyContent:"center", alignItems:"center"}}>
<StatusBar backgroundColor="#023953" barStyle="light-content" />
<SplashScreen/>
</View>:<AppContainer/>
)
}
}
export default App;