diff --git a/TestsExample/App.js b/TestsExample/App.js index e7908ccfd7..dd1addb67d 100644 --- a/TestsExample/App.js +++ b/TestsExample/App.js @@ -56,6 +56,7 @@ import Test1032 from './src/Test1032'; import Test1036 from './src/Test1036'; import Test1072 from './src/Test1072'; import Test1084 from './src/Test1084'; +import Test1096 from './src/Test1096'; export default function App() { return ( diff --git a/TestsExample/src/Test1096.tsx b/TestsExample/src/Test1096.tsx new file mode 100644 index 0000000000..6e6bb1753e --- /dev/null +++ b/TestsExample/src/Test1096.tsx @@ -0,0 +1,89 @@ +import * as React from 'react'; + +import { Button, StyleSheet, View, Modal } from 'react-native'; +import {FullWindowOverlay} from 'react-native-screens'; +import { + createNativeStackNavigator, + NativeStackNavigationProp, +} from 'react-native-screens/native-stack'; +import { NavigationContainer, ParamListBase } from '@react-navigation/native'; + +function Home({ + navigation, +}: { + navigation: NativeStackNavigationProp; +}) { + const [isShowModal, setIsShowModal] = React.useState(false); + + return ( + +