新线按钮&&提交按钮

时间:2017-11-14 22:59:10

标签: react-native

在我的TextInput中,我需要展示一条"新线"键也是"完成"键。

目前我只能得到一个或另一个。我可以得到&#34; New Line&#34;关键但设置<TextInput returnKeyType="none" multiline>,但是我没有完成&#34;完成&#34;钥匙了:

两者都可以吗?我在Android上测试,我还没有在iOS上测试过。

1 个答案:

答案 0 :(得分:1)

不幸的是,简短的回答是否定的。

对于returnKeyType文档状态只能有一个枚举值...

returnKeyType?: enum('done', 'go', 'next', 'search', 'send', 'none', 'previous', 'default', 'emergency-call', 'google', 'join', 'route', 'yahoo') 

Determines how the return key should look. On Android you can also use returnKeyLabel.

跨平台

The following values work across platforms:

done
go
next
search
send

仅限Android

The following values work on Android only:

none
previous

仅限iOS

The following values work on iOS only:

default
emergency-call
google
join
route
yahoo