Resolve "Budget"
This commit is contained in:
parent
ab2a03ba0b
commit
5a9b76a3ff
9 changed files with 60 additions and 33 deletions
|
|
@ -16,10 +16,11 @@ export default function Layout() {
|
|||
|
||||
const styles = StyleSheet.create({
|
||||
sceneContainer: {
|
||||
backgroundColor: useThemeColor("backgroundColor"),
|
||||
backgroundColor: useThemeColor("containerColor"),
|
||||
},
|
||||
tabBar: {
|
||||
backgroundColor: useThemeColor("backgroundColor"),
|
||||
borderTopColor: useThemeColor("backgroundColor"),
|
||||
}
|
||||
});
|
||||
|
||||
|
|
@ -42,6 +43,7 @@ export default function Layout() {
|
|||
tabBarLabel: "Budget",
|
||||
tabBarIcon: ({size, color}) => (
|
||||
<FontAwesome name="money" size={size} color={color}/>),
|
||||
unmountOnBlur: true,
|
||||
}
|
||||
}/>
|
||||
<Tabs.Screen name="home" options={
|
||||
|
|
@ -58,6 +60,7 @@ export default function Layout() {
|
|||
tabBarLabel: "Stats",
|
||||
tabBarIcon: ({size, color}) => (
|
||||
<FontAwesome name="bar-chart" size={size} color={color}/>),
|
||||
unmountOnBlur: true,
|
||||
}
|
||||
}/>
|
||||
</Tabs>
|
||||
|
|
|
|||
Reference in a new issue