Commit 64d72b6f by tungnq

TODO: Điều chỉnh giao diện tab bar

parent 2474498c
...@@ -30,8 +30,8 @@ const TabNavigator = props => { ...@@ -30,8 +30,8 @@ const TabNavigator = props => {
screenOptions={{ screenOptions={{
headerShown: false, headerShown: false,
tabBarStyle: { tabBarStyle: {
height: 61, // 👈 Tăng chiều cao ở đây height: Platform.OS === 'ios' ? 80 : 61, // 👈 Tăng chiều cao ở đây
paddingVertical: 5, // 👈 Tăng padding nếu icon/text bị sát mép dưới paddingVertical: Platform.OS === 'ios' ? 10 : 5, // 👈 Tăng padding nếu icon/text bị sát mép dưới
}, },
tabBarActiveTintColor: R.colors.blue500, // active icon/text tabBarActiveTintColor: R.colors.blue500, // active icon/text
tabBarShowLabel: true, tabBarShowLabel: true,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment