flutter_monet_theme 0.4.4
flutter_monet_theme: ^0.4.4 copied to clipboard
An package for creating monet themes in flutter with an friendly api
flutter_monet_theme #
An package for creating monet themes in flutter with an friendly api
Features #
- Theme generation from an single, or more seed values
- Seed value inference from images
- Material Design 3 compatible typography
- Material Design 3 compatible color palettes:

Usage #
Create an MonetTheme (or chose an baseline one), and use it with flutter.
final MonetTheme monetTheme = baseline_3p;
final TextTheme monetTextTheme = generateTextTheme();
final theme = ThemeData.from(
colorScheme: monetTheme.light.toColorScheme(),
textTheme: monetTextTheme,
);
final darkTheme= ThemeData.from(
colorScheme: monetTheme.dark.toColorScheme(),
textTheme: monetTextTheme,
);