From a059ed572dce6ffaf9c46d4447aa3f1be699ec28 Mon Sep 17 00:00:00 2001 From: alduzy Date: Wed, 19 Jun 2024 17:18:11 +0200 Subject: [PATCH 01/11] feat: added repro --- apps/test-examples/src/Test2002.tsx | 68 +++++++++++++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 apps/test-examples/src/Test2002.tsx diff --git a/apps/test-examples/src/Test2002.tsx b/apps/test-examples/src/Test2002.tsx new file mode 100644 index 0000000000..dc06968c63 --- /dev/null +++ b/apps/test-examples/src/Test2002.tsx @@ -0,0 +1,68 @@ +import * as React from 'react'; +import { View, Text, Button, useColorScheme } from 'react-native'; +import { NavigationContainer } from '@react-navigation/native'; +import { createNativeStackNavigator } from '@react-navigation/native-stack'; + +function HomeScreen({ navigation }) { + const scheme = useColorScheme(); + + return ( + + This is the home screen! +