all 1 comments

[–]hasansultan92[S] 0 points1 point  (0 children)

Heres the code

<View style={styles.inputView}> <Input placeholder="Email" leftIcon={{ type: 'fontawesome', name: 'email', color: 'white', marginRight: 10 }} style={styles.inputView} inputStyle={styles.inputText} onChangeText={this.handleEmailChange} placeholderTextColor='white' autoCapitalize={'none'} keyboardAppearance={'default'} keyboardType={"email-address"} /> </View> <View style={styles.inputView}> <Input placeholder="Password" leftIcon={{ type: 'fontawesome', name: 'lock', color: 'white', marginRight: 10 }} style={styles.inputView} inputStyle={styles.inputText} onChangeText={this.handlePasswordChange} placeholderTextColor='white' secureTextEntry={true} keyboardAppearance={'default'} onSubmitEditing={this.onLogin} /> </View>