反应本机文本输入固定文本

时间:2019-11-18 15:05:43

标签: react-native react-native-textinput

我想在textInput上添加类似提示的内容,例如在使用android studio的java中,在react native中可以这样做吗?我知道您可以选择添加Value,defaultValue和占位符,但是它们不能像提示一样工作。

坦克!

3 个答案:

答案 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的更多信息