React Native - Selector
En este capítulo, crearemos un selector simple con dos opciones disponibles.
Paso 1: crear archivo
Aquí el App.js La carpeta se utilizará como componente de presentación.
App.js
import React from 'react'
import PickerExample from './PickerExample.js'
const App = () => {
return (
<PickerExample />
)
}
export default App
Paso 2: Lógica
this.state.user se utiliza para el control del selector.
los updateUser La función se activará cuando se seleccione un usuario.
PickerExample.js
import React, { Component } from 'react';
import { View, Text, Picker, StyleSheet } from 'react-native'
class PickerExample extends Component {
state = {user: ''}
updateUser = (user) => {
this.setState({ user: user })
}
render() {
return (
<View>
<Picker selectedValue = {this.state.user} onValueChange = {this.updateUser}>
<Picker.Item label = "Steve" value = "steve" />
<Picker.Item label = "Ellen" value = "ellen" />
<Picker.Item label = "Maria" value = "maria" />
</Picker>
<Text style = {styles.text}>{this.state.user}</Text>
</View>
)
}
}
export default PickerExample
const styles = StyleSheet.create({
text: {
fontSize: 30,
alignSelf: 'center',
color: 'red'
}
})
Salida
Si hace clic en el nombre, se le mostrarán las tres opciones como:
Y puede elegir uno de ellos y la salida será como.