Files
mobile-darmasaba/app/(application)/_layout.tsx
amel bb9c5090f9 upd: search
Deskripsi:
- ui search

NoIssues
2025-02-26 17:58:31 +08:00

17 lines
528 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>
<StatusBar style="light" />
</>
)
}