-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
81 lines (67 loc) · 1.43 KB
/
Copy pathApp.js
File metadata and controls
81 lines (67 loc) · 1.43 KB
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
import React, { Component } from 'react';
import {
View,
Text,
Image,
StyleSheet,
AsyncStorage,
} from 'react-native';
import {Button,Icon} from 'react-native-elements';
import { Navigation } from 'react-native-navigation';
import {Authenticated,UnAuthenticated} from './src/router/router'
import {appName,color} from './src/config/config';
import {GlobalStyles} from './src/styles/styles';
class App extends Component {
constructor(){
super()
AsyncStorage.getItem('token',(err,value) => {
console.log(value);
console.log(err);
if(value != null){
Authenticated()
}else{
UnAuthenticated()
}
})
}
componentDidMount(){
}
goToScreen = (screen) => {
Navigation.push(this.props.componentId,{
component : {
name : screen,
options : {}
}
})
}
render(){
return(
<View style={GlobalStyles.containerCenter}>
<View style={styles.imgWrapper}>
<Image source={require('./src/img/Chat.png')} height={300} width={300} style={styles.img}/>
</View>
</View>
)
}
}
export default App;
const styles = StyleSheet.create({
titleWraper : {
marginTop:10
},
imgWrapper : {
flex:1,
padding:20,
alignItems:'center',
justifyContent:'center'
},
img : {
height:300,
width:300
},
buttonSignin : {
height:50,
borderRadius:0,
backgroundColor:color.primary
}
})