12 lines
361 B
Dart
12 lines
361 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class TextStyles{
|
|
|
|
static TextStyle? titleTextStyle = const TextStyle(fontSize: 24, fontWeight: FontWeight.bold);
|
|
static TextStyle? title2BTextStyle = const TextStyle(fontSize: 20, fontWeight: FontWeight.bold);
|
|
static TextStyle? title2TextStyle = const TextStyle(fontSize: 20, fontWeight: FontWeight.normal);
|
|
|
|
|
|
}
|
|
|