mirror of
https://github.com/Livinglist/Hacki.git
synced 2025-08-06 18:24:42 +08:00
11 lines
162 B
Dart
11 lines
162 B
Dart
enum Font {
|
|
roboto('Roboto'),
|
|
robotoSlab('Roboto Slab'),
|
|
ubuntu('Ubuntu'),
|
|
ubuntuMono('Ubuntu Mono');
|
|
|
|
const Font(this.label);
|
|
|
|
final String label;
|
|
}
|