我想在textInput上添加类似提示的内容,例如在使用android studio的java中,在react native中可以这样做吗?我知道您可以选择添加Value,defaultValue和占位符,但是它们不能像提示一样工作。
坦克!
答案 0 :(得分:0)
您可以使用placeholder个道具
<TextInput
placeholder="Input email"
/>
答案 1 :(得分:0)
是的,它有可能被称为占位符,这是docs中的一个示例。:
<TextInput
style={{height: 40}}
placeholder="Type here to translate!"
onChangeText={(text) => this.setState({text})}
value={this.state.text}
/>
答案 2 :(得分:0)
您唯一需要做的就是添加一个placeholder
道具。
<TextInput
...//otherprops
placeholder="enter your hint here"
/>
我强烈建议您阅读React Native文档here
中有关TextInput
的更多信息