93 lines
2.4 KiB
TypeScript
93 lines
2.4 KiB
TypeScript
import {
|
|
DarkTheme,
|
|
DefaultTheme,
|
|
ThemeProvider as NavigationThemeProvider,
|
|
} from "@react-navigation/native";
|
|
import { Stack } from "expo-router";
|
|
import { StatusBar } from "expo-status-bar";
|
|
import "react-native-reanimated";
|
|
|
|
import { Colors } from "@/constants/theme";
|
|
import { AppStateProvider } from "@/context/AppStateContext";
|
|
import { ThemeProvider } from "@/context/ThemeContext";
|
|
import { useColorScheme } from "@/hooks/use-color-scheme";
|
|
import "@/i18n"; // Initialize i18n
|
|
|
|
export const unstable_settings = {
|
|
anchor: "(tabs)",
|
|
};
|
|
|
|
export default function RootLayout() {
|
|
return (
|
|
<ThemeProvider>
|
|
<AppStateProvider>
|
|
<RootLayoutNav />
|
|
</AppStateProvider>
|
|
</ThemeProvider>
|
|
);
|
|
}
|
|
|
|
function RootLayoutNav() {
|
|
const colorScheme = useColorScheme();
|
|
const isDark = colorScheme === "dark";
|
|
|
|
// Custom navigation theme to ensure proper colors
|
|
const navigationTheme = isDark
|
|
? {
|
|
...DarkTheme,
|
|
colors: {
|
|
...DarkTheme.colors,
|
|
background: Colors.dark.background,
|
|
card: Colors.dark.background,
|
|
text: Colors.dark.text,
|
|
border: Colors.dark.background,
|
|
notification: Colors.dark.tint,
|
|
},
|
|
}
|
|
: {
|
|
...DefaultTheme,
|
|
colors: {
|
|
...DefaultTheme.colors,
|
|
background: Colors.light.background,
|
|
card: Colors.light.background,
|
|
text: Colors.light.text,
|
|
border: Colors.light.background,
|
|
notification: Colors.light.tint,
|
|
},
|
|
};
|
|
|
|
return (
|
|
<NavigationThemeProvider value={navigationTheme}>
|
|
<Stack>
|
|
<Stack.Screen name="(tabs)" options={{ headerShown: false }} />
|
|
<Stack.Screen
|
|
name="modal"
|
|
options={{ presentation: "modal", title: "Modal" }}
|
|
/>
|
|
<Stack.Screen
|
|
name="match-detail/[id]"
|
|
options={{
|
|
animation: "slide_from_right",
|
|
headerShown: false,
|
|
}}
|
|
/>
|
|
<Stack.Screen
|
|
name="search"
|
|
options={{
|
|
animation: "slide_from_right",
|
|
headerShown: false,
|
|
}}
|
|
/>
|
|
<Stack.Screen
|
|
name="live-detail/[id]"
|
|
options={{
|
|
animation: "slide_from_right",
|
|
headerShown: false,
|
|
}}
|
|
/>
|
|
</Stack>
|
|
<StatusBar style={colorScheme === "dark" ? "light" : "dark"} />
|
|
</NavigationThemeProvider>
|
|
);
|
|
}
|