-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.js
More file actions
64 lines (56 loc) · 1.56 KB
/
App.js
File metadata and controls
64 lines (56 loc) · 1.56 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
import React from 'react';
import { Text, KeyboardAvoidingView, Button, TextInput } from 'react-native';
import styles from './styles';
import If from './components/if/if';
import AppHeader from './components/app-header/app-header'
import * as Font from 'expo-font';
export default class App extends React.Component {
constructor(props) {
super(props);
this.state = {};
this.state.isLoggedIn = false;
this.state.text = '';
}
componentDidMount() {
Font.loadAsync({
'Montserrat': require('./assets/fonts/Montserrat.ttf'),
});
}
login = () => {
if(!this.state.isLoggedIn) {
this.setState({
isLoggedIn: true
});
}
}
logout = () => {
if(this.state.isLoggedIn) {
this.setState({
isLoggedIn: false,
text: '',
});
}
}
render() {
return (
<>
<AppHeader />
<KeyboardAvoidingView style={styles.container} behavior='padding' enabled>
<If condition={!this.state.isLoggedIn}>
<Button onPress={this.login} title='Login with Twitter' />
</If>
<If condition={this.state.isLoggedIn}>
<Text style={{ fontFamily: 'Montserrat' }}>Logged In!</Text>
<TextInput
style={{height: 40, width: 90, borderColor: 'gray', borderWidth: 1}}
onChangeText={(text) => this.setState({text})}
value={this.state.text}
/>
<Button onPress={this.logout} title='Logout'></Button>
<Text>{this.state.text}</Text>
</If>
</KeyboardAvoidingView>
</>
);
}
}