You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
512 B
18 lines
512 B
3 weeks ago
|
import "@/global.css";
|
||
|
|
||
|
import { GluestackUIProvider } from "@/components/ui/gluestack-ui-provider";
|
||
|
import { StatusBar } from "expo-status-bar";
|
||
|
import { Stack } from "expo-router";
|
||
|
import { SafeAreaView } from "react-native-safe-area-context";
|
||
|
|
||
|
export default function RootLayout() {
|
||
|
return (
|
||
|
<GluestackUIProvider>
|
||
|
<SafeAreaView style={{ flex: 1 }}>
|
||
|
<StatusBar style="auto" />
|
||
|
<Stack screenOptions={{ headerShown: false }} />
|
||
|
</SafeAreaView>
|
||
|
</GluestackUIProvider>
|
||
|
);
|
||
|
}
|