Initial commit

Generated by create-expo-app 4.0.0.
This commit is contained in:
2026-07-15 17:34:19 +07:00
commit fbdd711abb
55 changed files with 9295 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
import { DarkTheme, DefaultTheme, ThemeProvider } from 'expo-router';
import * as SplashScreen from 'expo-splash-screen';
import { useColorScheme } from 'react-native';
import { AnimatedSplashOverlay } from '@/components/animated-icon';
import AppTabs from '@/components/app-tabs';
SplashScreen.preventAutoHideAsync();
export default function TabLayout() {
const colorScheme = useColorScheme();
return (
<ThemeProvider value={colorScheme === 'dark' ? DarkTheme : DefaultTheme}>
<AnimatedSplashOverlay />
<AppTabs />
</ThemeProvider>
);
}