React Native [React Native Elements]搜索栏CancelButtonText

时间:2018-04-10 02:25:00

标签: react-native

阵营天然 - IOS - React-Native(0.53.0) - React-Native-Elements(“^。19.0”)

当用户选择搜索栏时,我无法在我的React-Native-Element搜索栏旁边显示“取消”按钮。图像提供了我想要实现的目标

Unable to see the 'CANCEL' text at any time

这是我的代码段:

    <SearchBar
         lightTheme round
         placeholder="Test"
         onSubmitEditing={()=>{this.doSomething()}}
         cancelButtonText = "Cancel"
     />

enter image description here

React-Native-Element搜索栏的参考 https://react-native-training.github.io/react-native-elements/docs/searchbar.html

1 个答案:

答案 0 :(得分:4)

最新稳定版本测试版docs不同。

如果你有 beta版本,你可以在cancelButtonTitle

添加SearchBar道具
<SearchBar
  showLoading
  platform="ios"
  cancelButtonTitle="Cancel"
  placeholder='Search' />