- Вот мой логин. js:
<View style={styles.container}>
<Logo />
<Form type="Login"/>
<View style={styles.signupTextCont}>
<Text style={styles.signupText}> D'ont have an account yet? </Text>
<Text style={styles.signupButton}> Signup </Text>
</View>
</View>
Вот моя регистрация. js:
<View style={styles.container}>
<Logo />
<Form type="Signup"/>
<View style={styles.signupTextCont}>
<Text style={styles.signupText}> Already have an account yet? </Text>
<Text style={styles.signupButton}> Sign in </Text>
</View>
</View>
и моя форма. js:
<View style={styles.container}>
<TextInput style={styles.inputBox}
underlineColorAndroid='rgba(0, 0, 0, 0)'
placeholder= "Email"
placeholderTextColor= "#ffffff"
/>
<TextInput style={styles.inputBox}
underlineColorAndroid='rgba(0, 0, 0, 0)'
placeholder= "Password"
secureTextEntry= {true}
placeholderTextColor= "#ffffff"
/>
<TouchableOpacity style={styles.button}>
<Text style={styles.buttonText}>{this.props.type}</Text>
</TouchableOpacity>
</View>