如何在react-native-navigation v2中为所有屏幕添加固定标题?

时间:2019-01-11 19:58:11

标签: react-native react-native-navigation

我想知道是否可以在react-native-navigation v2中向所有屏幕添加固定的标题。像这样:

<View style={{flex: 1}}>
    <View style={{flex: 0.3}}>
        <Text>Fixed Banner</Text>
    </View>
    <View style={{flex: 0.7}}>
        Navigation.setRoot({
            root: {
                bottomTabs: {
                    id: 'BottomTabsId',
                    children: [
                    {
                        component: {
                            name: 'SignIn',
                            options: {
                                bottomTab: {
                                    fontSize: 12,
                                    text: 'Sign In',
                                    icon: require('./signin.png')
                                 }
                             }
                        },
                   },
                   ...
              ],
          }
    </View>
</View>

每当我将标签页切换到另一个屏幕时,理想情况下,我总是希望看到相同的横幅。

1 个答案:

答案 0 :(得分:0)

Overlay中显示横幅。