TabNavigation中的标题标题为空

问题描述 投票:-1回答:1

无法弄清楚如何获得预期的结果。我尝试了什么?我将react-native和所有其他依赖项更新为最新版本。我查看了反应导航文档,甚至在github上创建了一个bug。

难道我做错了什么?我需要在使用TabNavigation时设置标题标题

const RootNavigator = createStackNavigator({
    ...publicScreens,
    Private: {
        screen: PrivateNavigator
    }
}, publicScreensConfig);

const privateScreens = {
    ContactList: {
        screen: ContactList
    },
    Settings: {
        screen: Settings
    }
};

.....

export default createBottomTabNavigator( privateScreens, options );
import React, { Component } from 'react'
import { Text, View } from 'react-native'
import GlobalColors from '../../config/colors';

export default class Settings extends Component {
    static navigationOptions = {
        title: 'Settings',
        headerStyle: {
            backgroundColor: GlobalColors.grayDark,
        },
        headerTintColor: 'white',
        headerTitleStyle: {
            fontWeight: 'bold',
        },
        gesturesEnabled: false,
    }

    render() {
        return (
            <View>
        <Text> Settigs </Text>
      </View>
        )
    }
}

但我看到空头。我想看看来自导航选项的标题文本

Empty header

javascript reactjs react-native react-navigation
1个回答
0
投票

感谢JinHoSo回答在这里

const bottomTabNavigator = createBottomTabNavigator(...)

bottomTabNavigator.navigationOptions = ({navigation, screenProps}) => {
  const childOptions = getActiveChildNavigationOptions(navigation, screenProps)
  return {
    title      : childOptions.title,
    headerLeft : childOptions.headerLeft,
    headerRight: childOptions.headerRight,
  }
}
© www.soinside.com 2019 - 2024. All rights reserved.