getPlaceHolderHeadlineTextStyle method

TextStyle getPlaceHolderHeadlineTextStyle(
  1. BuildContext context
)

Implementation

TextStyle getPlaceHolderHeadlineTextStyle(BuildContext context) {
  final theme = Theme.of(context);

  return theme.textTheme.headlineSmall!.copyWith(
    fontWeight: kFastFontWeightLight,
    color: theme.hintColor,
  );
}