NavigatorIOS React 原生半透明

NavigatorIOS React native translucent

我正在使用 NavigatorIOS 来路由我的应用程序。我只想显示没有任何标题或栏甚至半透明的后退按钮。 是否可以 ? 或者我必须使用另一个模块? 目前,我有这个:

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

非常感谢您的帮助,

玛格特

你可以将translucent prop传给NavigatorIOS的路由,像这样:

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