mhunt_launcher/lib/Shared/TextStyles.dart
2024-10-29 00:12:00 +05:30

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