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

This commit is contained in:
2023-02-09 16:50:48 +00:00
committed by Gitea
parent f3c3939ba1
commit bde54e0cf5
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 {