我有一个非常简单但样式化的 TextInput,声明为自己的组件。
它看起来像这样:
import React from 'react';
import { Text, View, TextInput } from 'react-native';
import styled from 'styled-components'
const StyledInput = styled.TextInput`
margin-bottom: 16px;
width: 345px;
padding-left: 8px;
`;
class Input extends React.Component {
constructor(props) {
super(props);
this.state = { text: '' };
}
render() {
return(
<StyledInput
style={{height: 40, borderColor: 'gray', borderWidth: 1}}
// onChangeText={(text) => this.setState({text})}
value={this.state.text}
placeholder={this.props.placeholder}
secureTextEntry={this.props.isPassword}
/>
)
}
}
export default Input
我的意图是将该组件包含在场景中,并在文本输入发生更改时触发 onChangeText 事件。我尝试了无数种方法......但没有成功传递价值。
<Input style={{height: 40, borderColor: 'gray', borderWidth: 1}}
onChangeText={(code) => this.setState({code})}
label='Aktiveringskods'
placeholder='Aktiveringskod:'
/>
但是,使用常规 TextInput 确实可以正常工作:
<TextInput style={{height: 40, borderColor: 'gray', borderWidth: 1}}
onChangeText={(username) => this.setState({username})}
label='Välj användarnamn'
placeholder='Användarnamn:'
/>
我在这里想念什么?