Skip to content

Commit fd1c6e0

Browse files
committed
fix: increase tab bar heing by 20%
Edge to Edge on Android
1 parent 922b011 commit fd1c6e0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/Tabbar/CustomTabBar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { Animated, StyleSheet } from 'react-native';
2323
import TabIcon from './TabIcon';
2424
import { useTheme } from 'react-native-paper';
2525

26-
export const TAB_BAR_HEIGHT = 50;
26+
export const TAB_BAR_HEIGHT = 60;
2727

2828
function CustomTabBar(
2929
props: BottomTabBarProps & {
@@ -79,7 +79,7 @@ const styles = StyleSheet.create({
7979
bar: {
8080
flexDirection: 'row',
8181
width: '100%',
82-
height: 50,
82+
height: TAB_BAR_HEIGHT,
8383
position: 'absolute',
8484
bottom: 0,
8585
left: 0,

0 commit comments

Comments
 (0)