iOS 上的 React Native TextInput 会在一次击键后隐藏键盘



import React from 'react'; 导入 { 文本输入, 键盘回避视图, 样式表 } 来自 'react-native';

从"../常量/颜色';

const QaTextInput = ({ style, minWidth, maxWidth, placeholder }( => { 常量输入 = { 身高: 35, 最小宽度: 最小宽度, 最大宽度: 最大宽度, 边框宽度: 1, 边框颜色:颜色输入, 背景颜色:颜色输入 };

return (
<KeyboardAvoidingView
behavior="position"
keyboardVerticalOffset="100"
enabled>
<TextInput
placeholder={placeholder}
autoFocus={true}
showSoftInputOnFocus={true}
style={input}
/>
</KeyboardAvoidingView>
);

};

导出默认的 QaTextInput;

这就是我使用该组件的方式。其中一个父节点是文本节点。将其更改为视图解决了它。

相关内容

  • 没有找到相关文章

最新更新