hintStyle static method
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),
);
}