mirror of
https://github.com/DocNR/POWR.git
synced 2025-04-19 10:51:19 +00:00
70 lines
2.0 KiB
TypeScript
70 lines
2.0 KiB
TypeScript
import '~/global.css';
|
|
|
|
import { DarkTheme, DefaultTheme, Theme, ThemeProvider } from '@react-navigation/native';
|
|
import { Stack } from 'expo-router';
|
|
import { StatusBar } from 'expo-status-bar';
|
|
import * as React from 'react';
|
|
import { Platform } from 'react-native';
|
|
import { NAV_THEME } from '~/lib/constants';
|
|
import { useColorScheme } from '~/lib/useColorScheme';
|
|
import { PortalHost } from '@rn-primitives/portal';
|
|
import { ThemeToggle } from '~/components/ThemeToggle';
|
|
import { setAndroidNavigationBar } from '~/lib/android-navigation-bar';
|
|
|
|
const LIGHT_THEME: Theme = {
|
|
...DefaultTheme,
|
|
colors: NAV_THEME.light,
|
|
};
|
|
const DARK_THEME: Theme = {
|
|
...DarkTheme,
|
|
colors: NAV_THEME.dark,
|
|
};
|
|
|
|
export {
|
|
// Catch any errors thrown by the Layout component.
|
|
ErrorBoundary,
|
|
} from 'expo-router';
|
|
|
|
export default function RootLayout() {
|
|
const hasMounted = React.useRef(false);
|
|
const { colorScheme, isDarkColorScheme } = useColorScheme();
|
|
const [isColorSchemeLoaded, setIsColorSchemeLoaded] = React.useState(false);
|
|
|
|
useIsomorphicLayoutEffect(() => {
|
|
if (hasMounted.current) {
|
|
return;
|
|
}
|
|
|
|
if (Platform.OS === 'web') {
|
|
// Adds the background color to the html element to prevent white background on overscroll.
|
|
document.documentElement.classList.add('bg-background');
|
|
}
|
|
setAndroidNavigationBar(colorScheme);
|
|
setIsColorSchemeLoaded(true);
|
|
hasMounted.current = true;
|
|
}, []);
|
|
|
|
if (!isColorSchemeLoaded) {
|
|
return null;
|
|
}
|
|
|
|
return (
|
|
<ThemeProvider value={isDarkColorScheme ? DARK_THEME : LIGHT_THEME}>
|
|
<StatusBar style={isDarkColorScheme ? 'light' : 'dark'} />
|
|
<Stack>
|
|
<Stack.Screen
|
|
name='index'
|
|
options={{
|
|
title: 'Starter Base',
|
|
headerRight: () => <ThemeToggle />,
|
|
}}
|
|
/>
|
|
</Stack>
|
|
<PortalHost />
|
|
</ThemeProvider>
|
|
);
|
|
}
|
|
|
|
const useIsomorphicLayoutEffect =
|
|
Platform.OS === 'web' && typeof window === 'undefined' ? React.useEffect : React.useLayoutEffect;
|