diff --git a/apps/src/tests/Test3345.tsx b/apps/src/tests/Test3345.tsx new file mode 100644 index 0000000000..6ca0de92da --- /dev/null +++ b/apps/src/tests/Test3345.tsx @@ -0,0 +1,72 @@ +import React from 'react'; +import { View, Button, ScrollView } from 'react-native'; +import { NavigationContainer } from '@react-navigation/native'; +import { createNativeStackNavigator } from '@react-navigation/native-stack'; + +const Stack = createNativeStackNavigator(); + +function HomeScreen({ navigation }) { + return ( + // In original repro SafeAreaView from `react-native` has been used here. + +