Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 86303e5c84 |
@@ -6,6 +6,9 @@
|
|||||||
"orientation": "portrait",
|
"orientation": "portrait",
|
||||||
"userInterfaceStyle": "dark",
|
"userInterfaceStyle": "dark",
|
||||||
"backgroundColor": "#0f1117",
|
"backgroundColor": "#0f1117",
|
||||||
|
"splash": {
|
||||||
|
"backgroundColor": "#0f1117"
|
||||||
|
},
|
||||||
"scheme": "sheethappens",
|
"scheme": "sheethappens",
|
||||||
"android": {
|
"android": {
|
||||||
"adaptiveIcon": {
|
"adaptiveIcon": {
|
||||||
|
|||||||
+29
-19
@@ -1,14 +1,22 @@
|
|||||||
import { useEffect } from "react";
|
import { useEffect } from "react";
|
||||||
import { Stack, router } from "expo-router";
|
import { Stack, router, SplashScreen } from "expo-router";
|
||||||
import { StatusBar } from "expo-status-bar";
|
import { StatusBar } from "expo-status-bar";
|
||||||
import { GestureHandlerRootView } from "react-native-gesture-handler";
|
import { GestureHandlerRootView } from "react-native-gesture-handler";
|
||||||
|
import { SafeAreaProvider } from "react-native-safe-area-context";
|
||||||
import "../global.css";
|
import "../global.css";
|
||||||
import { Colors } from "@/constants/theme";
|
import { Colors } from "@/constants/theme";
|
||||||
import { useSettings } from "@/hooks/useSettings";
|
import { useSettings } from "@/hooks/useSettings";
|
||||||
|
|
||||||
|
SplashScreen.preventAutoHideAsync();
|
||||||
|
|
||||||
export default function RootLayout() {
|
export default function RootLayout() {
|
||||||
const { settings, ready } = useSettings();
|
const { settings, ready } = useSettings();
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
if (!ready) return;
|
||||||
|
SplashScreen.hideAsync();
|
||||||
|
}, [ready]);
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
if (!ready) return;
|
if (!ready) return;
|
||||||
if (!settings.onboardingDone) {
|
if (!settings.onboardingDone) {
|
||||||
@@ -17,23 +25,25 @@ export default function RootLayout() {
|
|||||||
}, [ready, settings.onboardingDone]);
|
}, [ready, settings.onboardingDone]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<GestureHandlerRootView style={{ flex: 1, backgroundColor: Colors.bg }}>
|
<SafeAreaProvider>
|
||||||
<StatusBar style="light" />
|
<GestureHandlerRootView style={{ flex: 1, backgroundColor: Colors.bg }}>
|
||||||
<Stack
|
<StatusBar style="light" />
|
||||||
screenOptions={{
|
<Stack
|
||||||
headerStyle: { backgroundColor: Colors.surface },
|
screenOptions={{
|
||||||
headerTintColor: Colors.text1,
|
headerStyle: { backgroundColor: Colors.surface },
|
||||||
headerTitleStyle: { color: Colors.text1 },
|
headerTintColor: Colors.text1,
|
||||||
contentStyle: { backgroundColor: Colors.bg },
|
headerTitleStyle: { color: Colors.text1 },
|
||||||
animation: "slide_from_right",
|
contentStyle: { backgroundColor: Colors.bg },
|
||||||
}}
|
animation: "slide_from_right",
|
||||||
>
|
}}
|
||||||
<Stack.Screen name="index" options={{ title: "SheetHappens" }} />
|
>
|
||||||
<Stack.Screen name="new" options={{ title: "New Incident", presentation: "modal" }} />
|
<Stack.Screen name="index" options={{ title: "SheetHappens" }} />
|
||||||
<Stack.Screen name="incident/[id]" options={{ title: "Incident" }} />
|
<Stack.Screen name="new" options={{ title: "New Incident", presentation: "modal" }} />
|
||||||
<Stack.Screen name="settings" options={{ title: "Settings" }} />
|
<Stack.Screen name="incident/[id]" options={{ title: "Incident" }} />
|
||||||
<Stack.Screen name="onboarding" options={{ headerShown: false }} />
|
<Stack.Screen name="settings" options={{ title: "Settings" }} />
|
||||||
</Stack>
|
<Stack.Screen name="onboarding" options={{ headerShown: false }} />
|
||||||
</GestureHandlerRootView>
|
</Stack>
|
||||||
|
</GestureHandlerRootView>
|
||||||
|
</SafeAreaProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user