Last active
February 17, 2020 15:24
-
-
Save shamique/8c619258850fc6aa736c098457210033 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import { TouchableHighlight, StyleSheet, Text, TextInput, View } from 'react-native'; | |
export default class App extends Component { | |
constructor() { | |
super() | |
this.state = { | |
username: '', | |
password: '', | |
isLogined: false | |
} | |
} | |
inputChangeHandler = (value, name) => { | |
this.setState({ | |
[name]: value | |
}) | |
} | |
login = () => { | |
if ((this.state.username == 'shamique') && (this.state.password == '123456')) { | |
this.setState({ isLogined: true }); | |
} | |
else { | |
this.setState({ isLogined: false }); | |
} | |
} | |
render() { | |
return ( | |
<View style={LOCAL_STYLES.wrapper} testID="app-root" accessibilityLabel="app-root"> | |
<View style={LOCAL_STYLES.inputContainer}> | |
<TextInput name="username" accessibilityLabel="username" style={LOCAL_STYLES.input} onChangeText={(text) => this.inputChangeHandler(text, "username")} /> | |
</View> | |
<View style={LOCAL_STYLES.inputContainer}> | |
<TextInput name="password" accessibilityLabel="password" secureTextEntry={true} style={LOCAL_STYLES.input} onChangeText={(text) => this.inputChangeHandler(text, "password")} /> | |
</View> | |
<Text accessibilityLabel="loginstatus">{this.state.isLogined ? "success" : "fail"}</Text> | |
<TouchableHighlight style={LOCAL_STYLES.buttonContainer} accessibilityLabel="login" onPress={this.login}> | |
<Text style={{ color: 'white' }}>Login</Text> | |
</TouchableHighlight> | |
</View> | |
); | |
} | |
} | |
const LOCAL_STYLES = StyleSheet.create({ | |
wrapper: { | |
flex: 1, | |
alignItems: "center", | |
justifyContent: "center" | |
}, | |
inputContainer: { | |
borderBottomColor: '#F5FCFF', | |
backgroundColor: '#FFFFFF', | |
borderRadius: 30, | |
borderBottomWidth: 1, | |
marginBottom: 20, | |
flexDirection: 'row', | |
alignItems: 'center', | |
width: '80%', | |
borderColor: 'gray', | |
borderWidth: 1 | |
}, | |
buttonContainer: { | |
height: 45, | |
width: 250, | |
flexDirection: 'row', | |
justifyContent: 'center', | |
alignItems: 'center', | |
marginBottom: 20, | |
borderRadius: 30, | |
backgroundColor: "#00b5ec" | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment