React native app in dark and light mode
import React from 'react';
import { SafeAreaView, View, Text, StyleSheet, useColorScheme} from 'react-native';
function AppPro():JSX.Element {
const isDarkMode = useColorScheme() === 'dark';
return (
<View style={isDarkMode ? sty...
react-native-file-system.hashnode.dev1 min read