Update app and ignore local artifacts

This commit is contained in:
2026-09-04 12:59:28 +05:30
parent 8120ebb927
commit e6884a148b
56 changed files with 4419 additions and 370 deletions

View File

@@ -1,24 +1,73 @@
import { DarkTheme, DefaultTheme, ThemeProvider } from '@react-navigation/native';
import { Stack } from 'expo-router';
import { DefaultTheme, ThemeProvider } from '@react-navigation/native';
import { useFonts } from 'expo-font';
import { Stack, useRouter, useSegments } from 'expo-router';
import { StatusBar } from 'expo-status-bar';
import * as SplashScreen from 'expo-splash-screen';
import {
Manrope_400Regular,
Manrope_500Medium,
Manrope_600SemiBold,
Manrope_700Bold,
Manrope_800ExtraBold,
} from '@expo-google-fonts/manrope';
import { useEffect } from 'react';
import 'react-native-reanimated';
import { useColorScheme } from '@/hooks/use-color-scheme';
import { colors } from '@/components/ui';
import { collegeApi } from '@/lib/api';
void SplashScreen.preventAutoHideAsync();
const navigationTheme = {
...DefaultTheme,
colors: {
...DefaultTheme.colors,
primary: colors.brand.cobalt,
background: colors.neutral.canvas,
card: colors.neutral.surface,
text: colors.neutral.textPrimary,
border: colors.neutral.divider,
notification: colors.brand.coral,
},
};
export const unstable_settings = {
anchor: '(tabs)',
};
export default function RootLayout() {
const colorScheme = useColorScheme();
const router = useRouter();
const segments = useSegments();
const [fontsLoaded, fontError] = useFonts({
Manrope_400Regular,
Manrope_500Medium,
Manrope_600SemiBold,
Manrope_700Bold,
Manrope_800ExtraBold,
});
useEffect(() => {
if (fontsLoaded || fontError) void SplashScreen.hideAsync();
}, [fontError, fontsLoaded]);
useEffect(() => {
collegeApi.profile().then((profile) => {
if ((!profile.name || !profile.college) && String(segments[0]) !== 'onboarding') router.replace('/onboarding' as never);
}).catch(() => undefined);
}, [router, segments]);
if (!fontsLoaded && !fontError) return null;
return (
<ThemeProvider value={colorScheme === 'dark' ? DarkTheme : DefaultTheme}>
<ThemeProvider value={navigationTheme}>
<Stack>
<Stack.Screen name="(tabs)" options={{ headerShown: false }} />
<Stack.Screen name="modal" options={{ presentation: 'modal', title: 'Modal' }} />
<Stack.Screen name="onboarding" options={{ headerShown: false }} />
<Stack.Screen name="account" options={{ headerShown: false }} />
<Stack.Screen name="settings" options={{ headerShown: false }} />
<Stack.Screen name="subjects/[id]" options={{ headerShown: false }} />
</Stack>
<StatusBar style="auto" />
<StatusBar style="dark" />
</ThemeProvider>
);
}