torgeadelin / react-native-animated-nav-tab-bar

A simple and customisable React Native component that implements an animated bottom tab bar for React Navigation.
MIT License
889 stars 102 forks source link

Animation prop for screen transistion #136

Closed Raiden-16F7 closed 2 months ago

Raiden-16F7 commented 2 months ago

How can i change screen animation prop which is provided by default in react-navigation/bottom-tabs

The code below doesnt add any animations

function RootTabs() {
  return (
    <Tab.Navigator
      screenOptions={{
        animation: 'fade',
      }}
    >
      <Tab.Screen name="Home" component={HomeScreen} />
      <Tab.Screen name="Profile" component={ProfileScreen} />
    </Tab.Navigator>
  );
}