deleteted jsx files
This commit is contained in:
parent
f5dc3be4df
commit
8f39ec9bf4
4 changed files with 0 additions and 73 deletions
|
|
@ -1,39 +0,0 @@
|
||||||
import { View, Text } from 'react-native'
|
|
||||||
import Icon from 'react-native-vector-icons/FontAwesome'
|
|
||||||
import React from 'react'
|
|
||||||
import { Tabs } from 'expo-router'
|
|
||||||
|
|
||||||
export default function _layout() {
|
|
||||||
return (
|
|
||||||
<Tabs
|
|
||||||
initialRouteName='index' screenOptions={{
|
|
||||||
tabBarShowLabel: false
|
|
||||||
}}>
|
|
||||||
|
|
||||||
<Tabs.Screen name="expenses" options={{
|
|
||||||
tabBarIcon: ({focused}) =>{
|
|
||||||
return (
|
|
||||||
<Icon name="money" size={50} color={focused ? 'orange' : 'grey'}></Icon>
|
|
||||||
)
|
|
||||||
},
|
|
||||||
|
|
||||||
}}/>
|
|
||||||
<Tabs.Screen name="index" options={{
|
|
||||||
tabBarIcon: ({focused}) =>{
|
|
||||||
return (
|
|
||||||
<Icon name="home" size={50} color={focused ? 'orange' : 'grey'}></Icon>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
}}/>
|
|
||||||
<Tabs.Screen name="stats" options={{
|
|
||||||
tabBarIcon: ({focused}) =>{
|
|
||||||
return (
|
|
||||||
<Icon name="pie-chart" size={50} color={focused ? 'orange' : 'grey'}></Icon>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
||||||
}}/>
|
|
||||||
</Tabs>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
import { View, Text } from 'react-native'
|
|
||||||
import React from 'react'
|
|
||||||
|
|
||||||
export default function Expenses() {
|
|
||||||
return (
|
|
||||||
<View>
|
|
||||||
<Text>Expenses</Text>
|
|
||||||
</View>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
@ -1,14 +0,0 @@
|
||||||
import { View, Text, Button} from 'react-native'
|
|
||||||
import * as react from 'react'
|
|
||||||
import { Link } from 'expo-router'
|
|
||||||
|
|
||||||
|
|
||||||
export default function Page() {
|
|
||||||
return (
|
|
||||||
<View style={{flex: 1, justifyContent:'center', alignItems: 'center'}}>
|
|
||||||
<Text>Hello World</Text>
|
|
||||||
|
|
||||||
|
|
||||||
</View>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
import { View, Text } from 'react-native'
|
|
||||||
import React from 'react'
|
|
||||||
|
|
||||||
export default function Stats() {
|
|
||||||
return(
|
|
||||||
<View>
|
|
||||||
<Text>Stats</Text>
|
|
||||||
</View>
|
|
||||||
)
|
|
||||||
}
|
|
||||||
Reference in a new issue