fix unit tests. add conversation model and add unit tests to it.

This commit is contained in:
Jordan Hewitt
2025-01-25 09:11:09 -08:00
parent 0c9daf8e4a
commit 82d9c9c523
21 changed files with 7127 additions and 4712 deletions

View File

@ -2,7 +2,6 @@ import { Tabs } from 'expo-router';
import React from 'react';
import { Platform } from 'react-native';
import { HapticTab } from '@/components/HapticTab';
import { IconSymbol } from '@/components/ui/IconSymbol';
import TabBarBackground from '@/components/ui/TabBarBackground';
import { Colors } from '@/constants/Colors';
@ -16,7 +15,6 @@ export default function TabLayout() {
screenOptions={{
tabBarActiveTintColor: Colors[colorScheme ?? 'light'].tint,
headerShown: false,
tabBarButton: HapticTab,
tabBarBackground: TabBarBackground,
tabBarStyle: Platform.select({
ios: {

View File

@ -1,23 +0,0 @@
import { StyleSheet, Image, Platform } from 'react-native';
import { IconSymbol } from '@/components/ui/IconSymbol';
import { Text } from '@react-navigation/elements';
export default function TabTwoScreen() {
return (
<Text>Explore</Text>
);
}
const styles = StyleSheet.create({
headerImage: {
color: '#808080',
bottom: -90,
left: -35,
position: 'absolute',
},
titleContainer: {
flexDirection: 'row',
gap: 8,
},
});

View File

@ -1,5 +1,5 @@
import { LanguageSelection } from '@/components/LanguageSelection';
import { Text } from '@react-navigation/elements';
import { Text } from 'react-native';
import { Image, StyleSheet, Platform } from 'react-native';
export default function HomeScreen() {