如何在React Native中的多行文本中显示键盘完成按钮

时间:2018-02-20 18:01:12

标签: javascript react-native

我的反应原生视图中有一个多行文字。当用户输入时,在键盘视图中我需要显示完成(刻度标记)按钮。而不是它显示下一行图标。有没有办法实现这一目标。如果我使用文本输入,我可以这样做,但我需要添加多行。这是我的文字输入

<TextInput style = {styles.contactInput}
           underlineColorAndroid="transparent"
           multiline = {true}
           placeholder="Type your feedback here"/>

1 个答案:

答案 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”。