hintStyle static method

TextStyle hintStyle(
  1. BuildContext context
)

Implementation

static TextStyle hintStyle(BuildContext context) {
  final base = Theme.of(context).textTheme.bodySmall ?? const TextStyle();

  return base.copyWith(
    fontSize: 12,
    color: (base.color ?? Colors.black).withValues(alpha: 0.7),
  );
}