Skip to content

Commit

Permalink
[FIX] #38 초기화면 home -> findBins로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
Lee-Sunho committed Nov 4, 2024
1 parent cc4e940 commit e20e577
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions app/src/components/BottomNavigator.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,23 @@ export default function BottomNavigator() {
tabBarItemStyle: styles.tabBarItem,
}}>
<Tab.Screen
name="HomeNavigator"
component={HomeNavigator}
name="FindBin"
component={FindBin}
options={{
headerShown: false,
tabBarLabel: 'HOME',
tabBarLabel: 'FIND BINS',
tabBarActiveTintColor: Palette.Primary,
tabBarIcon: ({focused}) => <HomeSvg width="25" height="24" fill={focused ? Palette.Primary : Palette.Gray3} />,
tabBarIcon: ({focused}) => <BinSvg width="25" height="24" fill={focused ? Palette.Primary : Palette.Gray3} />,
}}
/>
<Tab.Screen
name="FindBin"
component={FindBin}
name="HomeNavigator"
component={HomeNavigator}
options={{
headerShown: false,
tabBarLabel: 'FIND BINS',
tabBarLabel: 'HOME',
tabBarActiveTintColor: Palette.Primary,
tabBarIcon: ({focused}) => <BinSvg width="25" height="24" fill={focused ? Palette.Primary : Palette.Gray3} />,
tabBarIcon: ({focused}) => <HomeSvg width="25" height="24" fill={focused ? Palette.Primary : Palette.Gray3} />,
}}
/>
<Tab.Screen
Expand Down

0 comments on commit e20e577

Please sign in to comment.