NavigatorIOS React native translucent

204 Views Asked by At

I'm using a NavigatorIOS for the routing of my app. I would like to display just the back button without any title or bar even translucent. Is it possible ? Or I must use another module ? Currently, I have this :

 <NavigatorIOS
    ref='nav'
    tintColor="white"
    style={{flex: 1}}
    initialRoute={{
      title: 'Splash',
      navigationBarHidden: true,
      component: SplashScene
    }}/>

Thanks a lot for your help,

Margot

1

There are 1 best solutions below

0
On BEST ANSWER

You can pass translucent prop to NavigatorIOS's route, like so:

<NavigatorIOS
    ref='nav'
    tintColor="white"
    style={{flex: 1}}
    initialRoute={{
        title: 'Splash',
        navigationBarHidden: true,
        translucent: true,
        component: SplashScene
    }}
/>