/** * 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'; import {MY_ENV_VAR} from '@env'; 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 ${MY_ENV_VAR}`} ); } export default App;