selfprivacy.org.app/lib/utils/named_font_weight.dart

10 lines
296 B
Dart
Raw Normal View History

2020-11-29 22:07:46 +02:00
import 'dart:ui';
import 'package:flutter/material.dart';
class NamedFontWeight {
static const FontWeight medium = FontWeight.w500;
static const FontWeight demiBold = FontWeight.w600;
static const FontWeight bold = FontWeight.bold;
static const FontWeight extraBold = FontWeight.w800;
}