gpt4 book ai didi

react-native - 在 TextInput React Native 中禁用返回键

转载 作者:行者123 更新时间:2023-12-04 11:46:43 26 4
gpt4 key购买 nike

我正在使用 React Native 的 TextInput。我想根据要求禁用返回键。有没有办法通过自定义代码禁用/启用返回键?
我尝试使用 enableReturnKeyAutomatically 但它不起作用。

最佳答案

是的,我们可以,通过使用 onSubmitEditing Prop TextInput .在此处发布示例:

<TextInput                   
value={password}
returnKeyType="done"
onSubmitEditing={() => {
if (password != '') {
onLoginPressed();
}
}}
placeholder="Password"
sub_place="PASSWORD"
onChangeText={value => setPassword(value)}
blurOnSubmit={false}
ref={passwordFocus}
/>

关于react-native - 在 TextInput React Native 中禁用返回键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45017299/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com