当我将TextInput与secureTextEntry={true}
道具一起使用时,
它创建这样的栏。
(我用红色方框检查)
我想将键盘隐藏在键盘上方。
我该如何实施?
有没有与之相关的道具?
下面是我的TextInput源。
<TextInput
placeholder="Enter your password"
autoCorrect={false}
secureTextEntry={true}
returnKeyType="done"
underlineColorAndroid={"transparent"}
onChangeText={(password) => this.setState({password})}
/>