我正在使用Wix的导航V2,我想在顶部栏中添加一个搜索字段,这就是我推动显示项目列表的屏幕的方式
Navigation.push(this.props.componentId, {
component: {
name: 'app.SearchEvent',
passProps: {
eventName: this.state.eventName,
},
options: {
topBar: {
drawBehind: false,
searchBar: true,
searchBarHiddenWhenScrolling: true,
searchBarPlaceholder: 'Recherche...',
},
},
},
});
我在文档的游乐场中看到了一个示例,但它在Android playground example中也不起作用 那我怎么添加呢?
答案 0 :(得分:2)
考虑当前版本2.7.1,并且根据官方文档(https://wix.github.io/react-native-navigation/#/docs/styling?id=ios-specific-options),这些属性特定于iOS +11。 它们并不是要在Android上运行。
searchBar: true, // iOS 11+ native UISearchBar inside topBar
searchBarHiddenWhenScrolling: true,
searchBarPlaceholder: 'Search', // iOS 11+ SearchBar placeholder