我的反应原生视图中有一个多行文字。当用户输入时,在键盘视图中我需要显示完成(刻度标记)按钮。而不是它显示下一行图标。有没有办法实现这一目标。如果我使用文本输入,我可以这样做,但我需要添加多行。这是我的文字输入
<TextInput style = {styles.contactInput}
underlineColorAndroid="transparent"
multiline = {true}
placeholder="Type your feedback here"/>
答案 0 :(得分:0)
<TextInput style = {styles.contactInput}
underlineColorAndroid="transparent"
multiline = {true}
returnKeyType={"done"} // adding returnKeyType will do the work
placeholder="Type your feedback here"
/>
正如上面评论中#MC10已经提到的,您还可以添加“go”,“send”,“search”和“next”。