diff --git a/apps/common-app/src/examples/LayoutAnimations/BottomTabs.tsx b/apps/common-app/src/examples/LayoutAnimations/BottomTabs.tsx new file mode 100644 index 000000000000..60e8da8d6817 --- /dev/null +++ b/apps/common-app/src/examples/LayoutAnimations/BottomTabs.tsx @@ -0,0 +1,69 @@ +import React from 'react'; + +import { createBottomTabNavigator } from '@react-navigation/bottom-tabs'; +import { View, StyleSheet, Button } from 'react-native'; +import Animated, { + BounceInDown, + FadeIn, + FadeOutDown, + LinearTransition, + RotateOutDownLeft, +} from 'react-native-reanimated'; + +const BottomBar = createBottomTabNavigator(); + +const TabA = () => { + const [toggle, setToggle] = React.useState(false); + + return ( + + +