I am using Wix's navigation V2, I want to add a search field in the top bar, this is how I am pushing the screen that shows a list of item
Navigation.push(this.props.componentId, {
component: {
name: 'app.SearchEvent',
passProps: {
eventName: this.state.eventName,
},
options: {
topBar: {
drawBehind: false,
searchBar: true,
searchBarHiddenWhenScrolling: true,
searchBarPlaceholder: 'Recherche...',
},
},
},
});
I've seen an example inplayground of the docs but it's also not working in Android, playground example So how could I add it?