Build English AI Coach starter app

This commit is contained in:
Ismail Ali
2026-04-28 15:06:57 +02:00
parent 64a1d143c3
commit a7caa22386
18 changed files with 1020 additions and 18 deletions

21
App.tsx
View File

@@ -1,20 +1,13 @@
import { StatusBar } from 'expo-status-bar';
import { StyleSheet, Text, View } from 'react-native';
import { SafeAreaProvider } from 'react-native-safe-area-context';
import { AppNavigator } from './src/navigation/AppNavigator';
export default function App() {
return (
<View style={styles.container}>
<Text>Open up App.tsx to start working on your app!</Text>
<StatusBar style="auto" />
</View>
<SafeAreaProvider>
<AppNavigator />
<StatusBar style="light" />
</SafeAreaProvider>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: '#fff',
alignItems: 'center',
justifyContent: 'center',
},
});