diff --git a/apps/common-app/src/examples/LayoutAnimations/BBExample.tsx b/apps/common-app/src/examples/LayoutAnimations/BBExample.tsx new file mode 100644 index 00000000000..2280ffca6eb --- /dev/null +++ b/apps/common-app/src/examples/LayoutAnimations/BBExample.tsx @@ -0,0 +1,71 @@ +import { Button, StyleSheet, View } from 'react-native'; +import Animated, { + BounceIn, + FadeInRight, + FadeInUp, + FadeOutLeft, + LinearTransition, + RotateOutDownLeft, +} from 'react-native-reanimated'; +import React, { useState } from 'react'; + +export default function BBExample() { + const [show, setShow] = useState(true); + const [show2, setShow2] = useState(false); + + return ( + +