10 lines
345 B
Dart
10 lines
345 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class PageStyles {
|
||
|
static const h1 = TextStyle(fontSize: 26, fontWeight: FontWeight.bold);
|
||
|
static const h2 = TextStyle(fontSize: 22, fontWeight: FontWeight.bold);
|
||
|
static const h3 = TextStyle(fontSize: 20);
|
||
|
static const h5 = TextStyle(fontSize: 18);
|
||
|
static const h4 = TextStyle(fontSize: 16);
|
||
|
}
|