在secureTextEntry = {true}删除栏

时间:2018-03-14 09:27:27

标签: react-native

当我将TextInput与secureTextEntry={true}道具一起使用时,

它创建这样的栏。

enter image description here

(我用红色方框检查)

我想将键盘隐藏在键盘上方。

我该如何实施?

有没有与之相关的道具?

下面是我的TextInput源。

    <TextInput
        placeholder="Enter your password"
        autoCorrect={false}
        secureTextEntry={true}
        returnKeyType="done"
        underlineColorAndroid={"transparent"}
        onChangeText={(password) => this.setState({password})}
      />

0 个答案:

没有答案