Files
mobile-darmasaba/app/(application)/_layout.tsx
amel 3372d4df23 upd: notifikasi
Deskripsi:
- update ui page notifikasi

No Issues
2025-02-27 11:01:52 +08:00

19 lines
686 B
TypeScript

import { Headers } from "@/constants/Headers";
import { Stack } from "expo-router";
import { StatusBar } from 'expo-status-bar';
export default function RootLayout() {
return (
<>
<Stack screenOptions={Headers.shadow}>
<Stack.Screen name="home" options={{ title: 'Home' }} />
<Stack.Screen name="feature" options={{ title: 'Fitur' }} />
<Stack.Screen name="search" options={{ title: 'Pencarian' }} />
<Stack.Screen name="notification" options={{ title: 'Notifikasi' }} />
<Stack.Screen name="profile" options={{ title: 'Profile' }} />
</Stack>
<StatusBar style="light" />
</>
)
}