import React from 'react'; import type {PropsWithChildren} from 'react'; import { SafeAreaView, ScrollView, StatusBar, StyleSheet, Text, useColorScheme, View, } from 'react-native'; import {Colors} from 'react-native/Libraries/NewAppScreen'; import ShowFormButton from './src/components/ShowFormButton'; function App(): React.JSX.Element { const isDarkMode = useColorScheme() === 'dark'; const backgroundStyle = { backgroundColor: isDarkMode ? Colors.darker : Colors.lighter, }; return ( ); } const styles = StyleSheet.create({ appcontainer: { flex: 1, justifyContent: 'center', alignItems: 'center', backgroundColor: 'blue', }, }); export default App;