SearchBar react-native-navigation V2 Android
SearchBar react-native-navigation V2 Android
我正在使用 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...',
},
},
},
});
我在文档的 playground 中看到了一个示例,但它在 Android、playground example 中也不起作用
那么我该如何添加呢?
考虑到当前版本 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
我正在使用 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...',
},
},
},
});
我在文档的 playground 中看到了一个示例,但它在 Android、playground example 中也不起作用 那么我该如何添加呢?
考虑到当前版本 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