0 purchases
easy design
Easy Design your application with Material Theme #
✅ ThemeText: Theme.of(context).
How to use #
Use text theme form theme #
Text(
'hello',
style: Theme.of(context).textTheme.titleMedium?.copyWith(
fontSize: 18,
fontWeight: FontWeight.w600,
),
),
copied to clipboard
Easy Open Text Styles #
ElevatedButton(
onPressed: () {
Navigator.of(context).push(
MaterialPageRoute(
builder: (context) => const TypographyScreen(),
),
);
},
child: const Text('Typography'),
),
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.