Skip to content

Instantly share code, notes, and snippets.

@BarryDaBee
BarryDaBee / app_typography.dart
Last active February 7, 2025 06:41
A robust approach to handling app typography using theme_extensions for large scale apps with SOLID principles. PS: Open to questions, suggestions and improvements.
import 'package:flutter/material.dart';
abstract class AppTypography {
AppTypography({
required this.name,
required this.regular,
required this.medium,
required this.semiBold,
required this.bold,
});