more refactors and logs page handling

This commit is contained in:
shenlong-tanwen
2024-10-23 02:30:46 +05:30
parent 8f47645cdb
commit a0afea04d8
90 changed files with 2386 additions and 584 deletions
@@ -1,6 +1,6 @@
import 'package:flutter/material.dart';
class AppTypography {
abstract final class AppTypography {
const AppTypography();
static const TextStyle displayLarge = TextStyle(
@@ -30,16 +30,16 @@ class AppTypography {
);
static const TextStyle titleLarge = TextStyle(
fontSize: 22,
fontWeight: FontWeight.bold,
fontSize: 20,
fontWeight: FontWeight.normal,
);
static const TextStyle titleMedium = TextStyle(
fontSize: 16,
fontWeight: FontWeight.bold,
fontWeight: FontWeight.normal,
);
static const TextStyle titleSmall = TextStyle(
fontSize: 14,
fontWeight: FontWeight.bold,
fontWeight: FontWeight.normal,
);
static const TextStyle bodyLarge = TextStyle(