_layout.tsx 332 B

12345678910111213141516
  1. import { Stack } from "expo-router";
  2. import { StatusBar } from "expo-status-bar";
  3. export default function RootLayout() {
  4. return (
  5. <>
  6. <StatusBar style="dark" />
  7. <Stack
  8. screenOptions={{
  9. headerShown: false,
  10. contentStyle: { backgroundColor: "#ffffff" },
  11. }}
  12. />
  13. </>
  14. );
  15. }