React Native - NavigatorIOS

时间:2015-11-09 09:04:56

标签: ios reactjs react-native

我想问为什么NavigatorIOS的背景颜色比通常的颜色要轻得多。标题的实际颜色应在下面的文本中相同(实际颜色)。

以下是代码:

<NavigatorIOS
            itemWrapperStyle={styles.navWrap}
            style={styles.nav}
            barTintColor="#9b2b25"
            initialRoute={{
                title: "Login",
                component: Login
            }} />

样式表

navWrap: {
    flex: 1,
    marginTop: 70
},
nav: {
    flex: 1
}

这里是屏幕截图:

enter image description here

1 个答案:

答案 0 :(得分:4)

NavigatorIOS <{>>半透明http://en.cppreference.com/w/cpp/chrono 。你可以注意到,通过推送文本,在导航栏后面。

default 设置为false应禁用该行为:

<NavigatorIOS
        itemWrapperStyle={styles.navWrap}
        style={styles.nav}
        barTintColor="#9b2b25"
        translucent={false}
        initialRoute={{
            title: "Login",
            component: Login
        }} />