Skip to content

Instantly share code, notes, and snippets.

@fredgrott
Created January 23, 2026 16:57
Show Gist options
  • Select an option

  • Save fredgrott/7a712b0c901a04986bcc6211771a5444 to your computer and use it in GitHub Desktop.

Select an option

Save fredgrott/7a712b0c901a04986bcc6211771a5444 to your computer and use it in GitHub Desktop.
button font size
@immutable
class ButtonFontSize {
final double xs;
final double sm;
final double md;
final double lg;
final double xl;
const ButtonFontSize({this.xs = 14, this.sm = 14, this.md = 16, this.lg = 20, this.xl = 24});
}
extension M3EButtonFontSizeExt on M3ECustomTypography {
ButtonFontSize get buttonFontSize => const ButtonFontSize();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment