我正在使用 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 中也不起作用,操场示例 那么我该如何添加它呢?