Deskripsi: - ui page group - ui tab button - ui list data group - ui modal bottom drawer - ui menu item row - ui tambah data No Issues
20 lines
784 B
TypeScript
20 lines
784 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.Screen name="group" options={{ title: 'Lembaga Desa', headerShown: false }} />
|
|
</Stack>
|
|
<StatusBar style="light" />
|
|
</>
|
|
)
|
|
}
|