【发布时间】:2020-04-15 05:39:37
【问题描述】:
我需要在输入输入时显示静态消息,或者如果用户专注于 react-native 中的 TextInput。
我需要显示输入字段必须包含以下字母。
如何以浮动方式在框下方显示此内容,而不是在 react-native 中的屏幕视图内
<TextInput>
underlineColorAndroid="transparent"
secureTextEntry={this.state.passwordDisplayed}
textContentType="password"
onChangeText={text => this.setState({ password: text })}
bluronSubmit={true}
placeholderTextColor={'grey'}
placeholder={'Password'}
</TextInput>
【问题讨论】: