From 0ed53844b560292a836fcc92e11e3fec19448e26 Mon Sep 17 00:00:00 2001 From: Kacper Kafara Date: Mon, 13 May 2024 17:14:44 +0200 Subject: [PATCH 1/6] Fix rtl issue & add reproductions --- FabricTestExample/App.js | 1 + FabricTestExample/src/Test2118.tsx | 73 ++++++++++++++++++++++++++++++ FabricTestExample/src/Test654.js | 2 - FabricTestExample/src/Test831.tsx | 2 - TestsExample/App.js | 1 + TestsExample/src/Test2118.tsx | 73 ++++++++++++++++++++++++++++++ 6 files changed, 148 insertions(+), 4 deletions(-) create mode 100644 FabricTestExample/src/Test2118.tsx create mode 100644 TestsExample/src/Test2118.tsx diff --git a/FabricTestExample/App.js b/FabricTestExample/App.js index 5cbb5f7fb1..a5f66cbc2b 100644 --- a/FabricTestExample/App.js +++ b/FabricTestExample/App.js @@ -97,6 +97,7 @@ import Test2008 from './src/Test2008'; import Test2028 from './src/Test2028'; import Test2048 from './src/Test2048'; import Test2069 from './src/Test2069'; +import Test2118 from './src/Test2118'; enableFreeze(true); diff --git a/FabricTestExample/src/Test2118.tsx b/FabricTestExample/src/Test2118.tsx new file mode 100644 index 0000000000..4e5aa325ab --- /dev/null +++ b/FabricTestExample/src/Test2118.tsx @@ -0,0 +1,73 @@ +import React, { useEffect } from 'react'; +import { View, Text, Button, Pressable, StyleSheet, Alert } from 'react-native'; +import { GestureHandlerRootView } from 'react-native-gesture-handler'; + +const fill = { flex: 1 }; + +import { NavigationContainer } from '@react-navigation/native'; +import { createNativeStackNavigator } from '@react-navigation/native-stack'; +import { createStackNavigator } from '@react-navigation/stack'; + +function HomeScreen({ navigation }) { + return ( + + Home Screen +