I have NavigatorIOS under Navigator and would like to hide Navigator\'s NavigationBar to use NavigatorIOS\'s bar. Is there any way to do this?
This is screenshot tha
pass this property along with navigator.push or initialRoute by setting it as true
navigationBarHidden?: PropTypes.bool
Boolean value that indicates whether the navigation bar is hidden by default.
eg:
or
this.props.navigator.replace({
title: 'ProviderList',
component: ProviderList,
passProps: {text: "hai"},``
navigationBarHidden: true,
});