Describes the style of a bottom tab bar.
import type { BottomTabBarStyle } from "react-native-app-helpers";
const example: BottomTabBarStyle = {
topPadding: 12,
iconTextSpacing: 4,
fontSize: 20,
bottomPadding: 5,
inactive: {
background: `yellow`,
iconFill: `green`,
color: `blue`,
fontFamily: `Example Font Family`,
},
active: {
background: `yellow`,
iconFill: `green`,
color: `blue`,
fontFamily: `Example Font Family`,
},
};