Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 593 Bytes

File metadata and controls

23 lines (18 loc) · 593 Bytes

react-native-app-helpers/UnderlinedTopTabBarStyleState

The styling to apply to a tab in an underlined top tab bar.

Usage

import type { UnderlinedTopTabBarStyle } from "react-native-app-helpers";

const withoutUnderline: UnderlinedTopTabBarStyle = {
  color: `yellow`,
  fontFamily: `Example Inactive Font Family`,
  backgroundColor: `red`,
  underline: { width: 4, color: `blue` },
};

const withUnderline: UnderlinedTopTabBarStyle = {
  color: `yellow`,
  fontFamily: `Example Inactive Font Family`,
  backgroundColor: `red`,
  underline: { width: 4, color: `blue` },
};