React Native-텍스트 입력
이 장에서는 TextInput React Native의 요소.
홈 구성 요소는 입력을 가져오고 렌더링합니다.
App.js
import React from 'react';
import Inputs from './inputs.js'
const App = () => {
return (
<Inputs />
)
}
export default App
입력
초기 상태를 정의합니다.
초기 상태를 정의한 후 handleEmail 그리고 handlePassword기능. 이러한 함수는 상태를 업데이트하는 데 사용됩니다.
그만큼 login() 함수는 상태의 현재 값을 경고합니다.
또한 텍스트 입력에 다른 속성을 추가하여 자동 대문자 사용을 비활성화하고 Android 장치에서 하단 테두리를 제거하고 자리 표시자를 설정합니다.
inputs.js
import React, { Component } from 'react'
import { View, Text, TouchableOpacity, TextInput, StyleSheet } from 'react-native'
class Inputs extends Component {
state = {
email: '',
password: ''
}
handleEmail = (text) => {
this.setState({ email: text })
}
handlePassword = (text) => {
this.setState({ password: text })
}
login = (email, pass) => {
alert('email: ' + email + ' password: ' + pass)
}
render() {
return (
<View style = {styles.container}>
<TextInput style = {styles.input}
underlineColorAndroid = "transparent"
placeholder = "Email"
placeholderTextColor = "#9a73ef"
autoCapitalize = "none"
onChangeText = {this.handleEmail}/>
<TextInput style = {styles.input}
underlineColorAndroid = "transparent"
placeholder = "Password"
placeholderTextColor = "#9a73ef"
autoCapitalize = "none"
onChangeText = {this.handlePassword}/>
<TouchableOpacity
style = {styles.submitButton}
onPress = {
() => this.login(this.state.email, this.state.password)
}>
<Text style = {styles.submitButtonText}> Submit </Text>
</TouchableOpacity>
</View>
)
}
}
export default Inputs
const styles = StyleSheet.create({
container: {
paddingTop: 23
},
input: {
margin: 15,
height: 40,
borderColor: '#7a42f4',
borderWidth: 1
},
submitButton: {
backgroundColor: '#7a42f4',
padding: 10,
margin: 15,
height: 40,
},
submitButtonText:{
color: 'white'
}
})
입력 필드 중 하나를 입력 할 때마다 상태가 업데이트됩니다. 클릭하면Submit 버튼을 클릭하면 입력 한 텍스트가 대화 상자 안에 표시됩니다.
입력 필드 중 하나를 입력 할 때마다 상태가 업데이트됩니다. 클릭하면Submit 버튼을 클릭하면 입력 한 텍스트가 대화 상자 안에 표시됩니다.