easier_typography 1.0.3+1
easier_typography: ^1.0.3+1 copied to clipboard
An easy way to use typography in Flutter. It provides a set of pre-defined text styles and a simple API for creating custom text styles.
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');