react-native-navigation BottomTab Style

506 Views Asked by At

Issue Description

How can we style the bottom tabs container in react-native-navigation? For example if we want to increase the vertical padding and change the top border color?

Environment

  • React Native Navigation version: 6.12.2
  • React Native version: 0.63.2
  • Platform(s) (iOS, Android, or both?): both
  • Device info (Simulator/Device? OS version? Debug/Release?): Any
1

There are 1 best solutions below

1
On

For changing border color you can use the code below. i didn't find anything related to vertical padding in documentation

bottomTabs: {
   borderColor: 'red',
   borderWidth: 0.1,
}

Check this comment for more details