You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
521 B
17 lines
521 B
4 years ago
|
|
||
|
|
||
|
import 'dart:ui';
|
||
|
|
||
|
class MyFontWeight {
|
||
|
|
||
|
static const FontWeight thin = FontWeight.w100;
|
||
|
static const FontWeight extra_light = FontWeight.w200;
|
||
|
static const FontWeight light = FontWeight.w300;
|
||
|
static const FontWeight regular = FontWeight.w400;
|
||
|
static const FontWeight medium = FontWeight.w500;
|
||
|
static const FontWeight semi_bold = FontWeight.w600;
|
||
|
static const FontWeight bold = FontWeight.w700;
|
||
|
static const FontWeight extra_bold = FontWeight.w800;
|
||
|
static const FontWeight black = FontWeight.w900;
|
||
|
|
||
|
}
|