Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 375 Bytes

File metadata and controls

19 lines (15 loc) · 375 Bytes

react-native-app-helpers/HeaderStyle

Describes the style of a header bar.

Usage

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

const example: HeaderStyle = {
  textColor: `red`,
  fontFamily: `Example Font Family`,
  fontSize: 30,
  background: `green`,
  outerHorizontalPadding: 50,
  innerHorizontalPadding: 14,
  verticalPadding: 3,
};