mirror of
https://github.com/Livinglist/Hacki.git
synced 2025-08-06 18:24:42 +08:00
15 lines
353 B
Dart
15 lines
353 B
Dart
import 'package:hacki/styles/styles.dart';
|
|
|
|
enum FontSize {
|
|
small('Small', TextDimens.pt15),
|
|
regular('Regular', TextDimens.pt16),
|
|
large('Large', TextDimens.pt17),
|
|
xlarge('XLarge', TextDimens.pt18),
|
|
xxlarge('XXLarge', TextDimens.pt19);
|
|
|
|
const FontSize(this.description, this.fontSize);
|
|
|
|
final String description;
|
|
final double fontSize;
|
|
}
|