feat(ui_components): add information_card & quote_card (#126)

This commit is contained in:
2023-02-07 18:30:46 +01:00
parent 5c824b5680
commit 07a9b47b36
17 changed files with 274 additions and 44 deletions
@@ -27,8 +27,7 @@ class MyApp extends StatelessWidget {
// This widget is the root of your application.
@override
Widget build(BuildContext context) {
return ComponentTheme(
Widget build(BuildContext context) => ComponentTheme(
componentThemeWidget: AppThemeComponent.components,
child: MaterialApp(
title: 'Wyatt Ui Components Example',
@@ -40,7 +39,6 @@ class MyApp extends StatelessWidget {
),
),
);
}
}
class Home extends StatelessWidget {