diff --git a/app/(screens)/_layout.tsx b/app/(screens)/_layout.tsx deleted file mode 100644 index af5c42e..0000000 --- a/app/(screens)/_layout.tsx +++ /dev/null @@ -1,57 +0,0 @@ -import React, { useEffect } from 'react'; -import { View, StyleSheet, TouchableOpacity } from 'react-native'; -import { useFonts } from 'expo-font'; -import * as SplashScreen from 'expo-splash-screen'; -import { ThemeProvider, DarkTheme, DefaultTheme, NavigationContainer } from '@react-navigation/native'; -import Settings from '@/components/Settings'; -import { createNativeStackNavigator } from '@react-navigation/native-stack'; -import HomeScreen from '.'; -import { LanguageSelection } from '@/components/LanguageSelection'; -import { language_matrix_entry } from '../i18n/api'; -import ConversationThread from '@/components/ConversationThread'; - - -const Stack = createNativeStackNavigator(); - -export default function _layout() { - const [loaded] = useFonts({ - SpaceMono: require('../assets/fonts/SpaceMono-Regular.ttf'), - }); - - useEffect(() => { - if (loaded) { - SplashScreen.hideAsync(); - } - }, [loaded]); - - if (!loaded) { - return null; - } - - return ( - - - - - - - - - ); -} - -const styles = StyleSheet.create({ - settingsIconContainer: { - marginLeft: 16, - }, -}); \ No newline at end of file diff --git a/app/(screens)/index.tsx b/app/(screens)/index.tsx deleted file mode 100644 index 326115b..0000000 --- a/app/(screens)/index.tsx +++ /dev/null @@ -1,45 +0,0 @@ -import { LanguageSelection } from '@/components/LanguageSelection'; -import { useState } from 'react'; -import { Button, Text, View } from 'react-native'; -import { Image, StyleSheet, Platform } from 'react-native'; -import { Conversation, Speaker } from '../lib/conversation'; -import { language_matrix_entry, Translator } from '../i18n/api'; -import ConversationThread from '@/components/ConversationThread'; -import { NavigationContainerProps, NavigationProp, ParamListBase } from '@react-navigation/native'; - -export default function HomeScreen({navigation} : {navigation: NavigationProp}) { - - const [language, setLanguage] = useState() - const [conversation, setConversation] = useState(); - - return ( - conversation ? : - -