mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-02 23:17:17 +00:00
11 lines
297 B
Dart
11 lines
297 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;
|
|
}
|