import { Image, StyleSheet, Platform } from 'react-native'; import { ThemedText } from '@/components/ThemedText'; import { ThemedView } from '@/components/ThemedView'; export default function HomeScreen() { return ( ); } const styles = StyleSheet.create({ container: { flex: 1, alignItems: 'center', justifyContent: 'center', }, title: { fontSize: 56, lineHeight: 64, fontWeight: 'bold', marginBottom: 20, textAlign: 'center', paddingHorizontal: 20, }, });