我使用NavigatorIOS来路由我的应用。我想只显示后退按钮,没有任何标题或条形甚至半透明。 可能吗 ? 或者我必须使用另一个模块? 目前,我有这个:
<NavigatorIOS
ref='nav'
tintColor="white"
style={{flex: 1}}
initialRoute={{
title: 'Splash',
navigationBarHidden: true,
component: SplashScene
}}/>
非常感谢你的帮助,
玛戈特
答案 0 :(得分:2)
您可以将半透明道具传递给NavigatorIOS的路线,如下所示:
<NavigatorIOS
ref='nav'
tintColor="white"
style={{flex: 1}}
initialRoute={{
title: 'Splash',
navigationBarHidden: true,
translucent: true,
component: SplashScene
}}
/>