我需要隐藏键盘时,用户提交或按下键盘的回车/下一个键。这里的代码,我正在使用的RichEditor的TextInput。
<RichEditor
ref={rf => this.richText = rf}
initialContentHTML={this.state.PostDescription}
style={{
// minHeight:Platform.OS === 'ios' ? 30 : 40,
// maxHeight:Platform.OS === 'ios' ? 100: 40,
height:'100%',
backgroundColor:'white',
flex: 1,justifyContent:'center',
minWidth:'100%',width:'100%'
}}
/>
2条答案
按热度按时间enxuqcxy1#
你用的是react-native-pell-rich编辑器吗?
如果是,您可以使用下面的代码关闭键盘。
hgc7kmma2#
以this代码为例,您可以使用以下命令使RichEditor模糊:
但是,没有
OnSubmit
函数(或者至少我在搜索中没有找到它),因为它只是react-native-webview的webview
,而不是TextInput。您可以使用react-native-webview-quilljs,因为他们有
ON_KEY_PRESS
事件并按下Enter键。