EasierTypography
A lightweight Flutter package that simplifies text styling using semantic widgets like DisplayLg, HeadingMd, Paragraph, and Label.
Features
- Predefined typography widgets based on
Theme.of(context) - Supports optional
boldanditalicstyling - Follows Material Design text styles
Usage
import 'package:easy_typography/easy_typography.dart';
DisplayLg('Welcome');
HeadingMd('Section Title', bold: true);
Paragraph('This is body text.', italic: true);
Label('Small label text');