From d6897448eafc4c1e76d43de8ffa1276cfcfaa94d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20B=C5=82oniarz?= Date: Wed, 17 Jul 2024 14:59:25 +0200 Subject: [PATCH 1/2] Fix parsing --- .../examples/LayoutAnimations/BottomTabs.tsx | 69 +++++++++++++++++++ apps/common-app/src/examples/index.ts | 5 ++ .../LayoutAnimationsProxy.cpp | 25 +++++-- 3 files changed, 94 insertions(+), 5 deletions(-) create mode 100644 apps/common-app/src/examples/LayoutAnimations/BottomTabs.tsx 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 ( + + +