在我的TextInput
中,我需要展示一条"新线"键和也是"完成"键。
目前我只能得到一个或另一个。我可以得到&#34; New Line&#34;关键但设置<TextInput returnKeyType="none" multiline>
,但是我没有完成&#34;完成&#34;钥匙了:
两者都可以吗?我在Android上测试,我还没有在iOS上测试过。
答案 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
The following values work on Android only:
none
previous
The following values work on iOS only:
default
emergency-call
google
join
route
yahoo