ptomasroos / react-native-tab-navigator

A tab bar that switches between scenes, written in JS for cross-platform support
MIT License
2.4k stars 415 forks source link

Toggle tabs with Animated/Animation ? #98

Closed song50119 closed 8 years ago

song50119 commented 8 years ago

Hi, I've tried to add Animated.TabNavigator but not work? Is something wrong? I want to make animation when tabs hide or show.

ide commented 8 years ago

TabBar animation is not supported. If you try to create Animated.TabNavigator, it will only add support for Animated styles to a wrapper View, which doesn't help. I recommend you spend some time reading the code in ExNavigation (https://github.com/exponentjs/ex-navigation/tree/master/src/sliding-tab) and using that navigator instead.

song50119 commented 8 years ago

Thanks