getPlaceHolderTitleTextStyle method

TextStyle getPlaceHolderTitleTextStyle(
  1. BuildContext context
)

Implementation

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

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