SMSahil Mundinsahilsblog.hashnode.dev·May 9, 2023 · 1 min readReact-native day 1.1import React from "react"; import { View, Text, StyleSheet, useColorScheme } from 'react-native' function MyApp() :JSX.Element{ const isDarkMode =useColorScheme() === "dark" return( <View style={styles.container}> ...00
SMSahil Mundinsahilsblog.hashnode.dev·May 9, 2023 · 1 min readReact-native starter day-1 codeimport React from "react"; import { Text, View, SafeAreaView } from 'react-native' function App(){ return( <SafeAreaView> <View> <Text>Hello world!</Text> <Text>Hello world!</Text> <Text>Hello world!</Text> ...00