feat: new expense navigation
This commit is contained in:
parent
0c07dcc714
commit
9ec5755f96
10 changed files with 68 additions and 24 deletions
16
app/(tabs)/home/_layout.tsx
Normal file
16
app/(tabs)/home/_layout.tsx
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
import { Stack } from "expo-router";
|
||||
|
||||
import { View, Text } from 'react-native'
|
||||
import React from 'react'
|
||||
|
||||
export default function _Layout() {
|
||||
return (
|
||||
<Stack>
|
||||
<Stack.Screen name="index" options={{
|
||||
title: "test",
|
||||
headerShown: false,
|
||||
}}/>
|
||||
<Stack.Screen name="addItem"/>
|
||||
</Stack>
|
||||
)
|
||||
}
|
||||
Reference in a new issue