iPad Tab Bar React Navigation

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

我只在iPad mini 2中遇到问题我正在通过反应导航(图标+标签)在行而不是列中生成我的应用程序的标签栏。在其他设备iPhone和iPad Pro,Android中,我在列中获得了图标和标签。你知道任何可能造成这种问题的问题吗?

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

我解决了在标签栏导航中添加这个问题

 createBottomTabBar({
   tabBarOptions: { 

   ... 
      tabStyle: { 
        flexDirection: 'column', 
        alignItems: 'center', 
        justifyContent: 'space-around' }, 
      }
 })
© www.soinside.com 2019 - 2024. All rights reserved.