17 lines
521 B
17 lines
521 B
|
|
|
|
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; |
|
|
|
} |