feat(ui_kit): update example with drawer and custom launch parameters

This commit is contained in:
2023-02-14 12:50:46 +01:00
parent 82eeba4d7d
commit c942e2aacf
8 changed files with 118 additions and 65 deletions
@@ -9,11 +9,14 @@ class Cards extends StatelessWidget {
const Cards({super.key});
@override
Widget build(BuildContext context) => Column(
Widget build(BuildContext context) => ListView(
children: [
Text(
'Cards',
style: Theme.of(context).textTheme.titleLarge,
const Gap(20),
Align(
child: Text(
'Cards',
style: Theme.of(context).textTheme.titleLarge,
),
),
const Gap(20),
const InformationCards(),