headlineStyle top-level constant

TextStyle const headlineStyle

Text Style with fontSize: 30 and fontWeight: FontWeight.w700

Implementation

const TextStyle headlineStyle = TextStyle(
  fontSize: 30,
  fontWeight: FontWeight.w700,
);