如何隐藏反应导航的 TabNavigator 的标题我只想显示图标

How to hide the title of react navigation's TabNavigator I would like to show only Icon

在屏幕内部,我设法通过将其设置为空来隐藏标题,如下所示

static navigationOptions = {
  title: "" 
};

但是对于每个屏幕我都必须将标题设置为空我想知道是否有任何 属性 默认情况下隐藏标题并且只显示图标?

参考react-navigations documentation,可以在tabBarOptions中使用showLabel隐藏标签。默认设置为 true。

TabNavigator(
        {
          MyScreen: { screen: MyScreen }
        },
        {
          tabBarOptions: {
            showLabel: false,
            showIcon: true
          }
        }
      )