screen: Mock,
navigationOptions: () => ({
tabBarIcon: ({ tintColor }) => <Icons.Calendar color={tintColor} />
})
},
Map: {
screen: Mock,
navigationOptions: () => ({
tabBarIcon: ({ tintColor }) => <Icons.Map color={tintColor} />
})
},
Events: {
screen: EventsList,
navigationOptions: () => ({
tabBarIcon: ({ tintColor }) => <Icons.Events color={tintColor} />,
})
},
Notifications: {
screen: Mock,
navigationOptions: () => ({
tabBarIcon: ({ tintColor }) => <Icons.Notifications color={tintColor} />
})
},
Profile: {
screen: Mock,
navigationOptions: () => ({
tabBarIcon: ({ tintColor }) => <Icons.Profile color={tintColor} />
})
}
}, {
swipeEnabled: true,
initialRouteName: 'Events',
tabBarOptions: {
showLabel: false,
activeTintColor: '#3d9ccc',
inactiveTintColor: '#757c80'
}
});
Не работает свайп между табами. Почему?
свайп не работает для createBottomTabNavigator во второй версии reactNavigation используй createMaterialBottomTabNavigator
Обсуждают сегодня