在安卓上TabNavigator内使用react-native-swiper显示空白的问题

组件地址

https://github.com/leecade/react-native-swiper

遇到问题:

在TabNavigator内使用react-native-swiper显示空白

解决办法:

将TabNavigator的tabBar 参数 swipeEnabled 和 animationEnabled 都设置为false

const MainScreenNavigator = TabNavigator(
    {
        Home: {
            screen: RecentChatsScreen,
            navigationOptions: {
                tabBarLabel: 'aaa',
            }
        },
    },
    {
        swipeEnabled: false,
        animationEnabled: false
    }
);