diff --git a/app/(screens)/_layout.tsx b/app/(screens)/_layout.tsx new file mode 100644 index 0000000..af5c42e --- /dev/null +++ b/app/(screens)/_layout.tsx @@ -0,0 +1,57 @@ +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 new file mode 100644 index 0000000..326115b --- /dev/null +++ b/app/(screens)/index.tsx @@ -0,0 +1,45 @@ +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 ? : + +