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

10 lines
296 B
Dart

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;
}