H1 property

TextStyle get H1

use this extension to get text style

example:

Text('data', style: context.H1)

Implementation

TextStyle get H1 => const TextStyle(
      fontSize: 32,
      fontWeight: FontWeight.w300,
      letterSpacing: -1.5,
    );