restored normally operating app.

This commit is contained in:
Jordan Hewitt
2025-01-30 10:41:40 -08:00
parent 889d898062
commit 5aa9c68a4b
12 changed files with 141 additions and 1095 deletions

View File

@ -2,8 +2,6 @@ import { Tabs } from 'expo-router';
import React from 'react';
import { Platform } from 'react-native';
import { IconSymbol } from '@/components/ui/IconSymbol';
import TabBarBackground from '@/components/ui/TabBarBackground';
import { Colors } from '@/constants/Colors';
import { useColorScheme } from '@/hooks/useColorScheme';
@ -15,7 +13,6 @@ export default function TabLayout() {
screenOptions={{
tabBarActiveTintColor: Colors[colorScheme ?? 'light'].tint,
headerShown: false,
tabBarBackground: TabBarBackground,
tabBarStyle: Platform.select({
ios: {
// Use a transparent background on iOS to show the blur effect
@ -24,20 +21,6 @@ export default function TabLayout() {
default: {},
}),
}}>
<Tabs.Screen
name="index"
options={{
title: 'Home',
tabBarIcon: ({ color }) => <IconSymbol size={28} name="house.fill" color={color} />,
}}
/>
<Tabs.Screen
name="explore"
options={{
title: 'Explore',
tabBarIcon: ({ color }) => <IconSymbol size={28} name="paperplane.fill" color={color} />,
}}
/>
</Tabs>
);
}

0
app/(tabs)/settings.tsx Normal file
View File

View File

@ -1,4 +1,4 @@
import * as SQLite from "react-native-sqlite-storage"
import SQLite from "react-native-sqlite-storage"
SQLite.enablePromise(true);