/** * Sample React Native App * https://github.com/facebook/react-native * * @format */ import React from 'react'; import { SafeAreaView, ScrollView, StatusBar, Text, useColorScheme, } from 'react-native'; import {Colors} from './src/colors'; function App(): JSX.Element { const isDarkMode = useColorScheme() === 'dark'; const backgroundStyle = { flex: 1, backgroundColor: isDarkMode ? Colors.darker : Colors.lighter, }; const textStyle = {color: isDarkMode ? Colors.light : Colors.dark}; return ( {'hello world'} ); } export default App;