getPlaceholderTextStyle method

TextStyle getPlaceholderTextStyle(
  1. BuildContext context
)

Implementation

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

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