import {COLORS} from './consts/colors';
import {Header} from './widgets/header';
import {Footer} from './widgets/footer';
import {FeatureList} from './widgets/feature-list';
import {TechStack} from './widgets/tech-stack';
import {QuickTips} from './widgets/quick-tips';
import {
View,
StatusBar,
ScrollView,
StyleSheet,
useColorScheme,
} from 'react-native';
import {
SafeAreaProvider,
useSafeAreaInsets,
} from 'react-native-safe-area-context';
export default function App() {
const isDarkMode = useColorScheme() === 'dark';
return (
);
}
function AppContent() {
const insets = useSafeAreaInsets();
const isDarkMode = useColorScheme() === 'dark';
const colors = isDarkMode ? COLORS.dark : COLORS.light;
return (
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
},
scroll: {
flex: 1,
},
content: {
paddingHorizontal: 24,
},
});