textThemeStyle property

TextTheme textThemeStyle
getter/setter pair

Implementation

static TextTheme textThemeStyle = const TextTheme(
  displayLarge: TextStyle(color: GSFormColors.textColorHeader, fontWeight: FontWeight.w700, fontSize: 12.0),
  displayMedium: TextStyle(color: GSFormColors.textColor, fontWeight: FontWeight.w700, fontSize: 11.0),
  displaySmall: TextStyle(color: GSFormColors.hintTextColor, fontWeight: FontWeight.w500, fontSize: 9.0),
  headlineMedium: TextStyle(color: GSFormColors.hintTextColor, fontWeight: FontWeight.w400, fontSize: 7.0),
  headlineSmall: TextStyle(color: GSFormColors.red, fontWeight: FontWeight.w400, fontSize: 7.0),
  bodyMedium: TextStyle(color: GSFormColors.hintTextColor, fontWeight: FontWeight.w400, fontSize: 11.0),
);