diff options
author | Felipe Erias <felipeerias@igalia.com> | 2021-11-12 13:59:07 +0900 |
---|---|---|
committer | Felipe Erias <felipeerias@igalia.com> | 2021-11-12 13:59:07 +0900 |
commit | 3cdd54458bfc6ba0066cb2a82c4a91bd4baf9b82 (patch) | |
tree | 60fb1bd885862af8f02beb2b837f401593e77576 /lib/page_dashboard.dart | |
parent | d3e731d226bdab810572c14b25d6991268315bba (diff) |
Nice animation when switching pages
Diffstat (limited to 'lib/page_dashboard.dart')
-rw-r--r-- | lib/page_dashboard.dart | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/lib/page_dashboard.dart b/lib/page_dashboard.dart index c0259ed..17258a8 100644 --- a/lib/page_dashboard.dart +++ b/lib/page_dashboard.dart @@ -1,12 +1,18 @@ import 'package:flutter/material.dart'; class DashboardPage extends StatelessWidget { - // TODO placeholder + const DashboardPage({Key? key}) : super(key: key); + @override Widget build(BuildContext context) { - return Text( - 'Dashboard', - style: Theme.of(context).textTheme.headline1, + return Container( + color: Colors.lightGreen, + constraints: BoxConstraints.expand(), + alignment: Alignment.center, + child: Text( + 'Dashboard', + style: Theme.of(context).textTheme.headline1, + ), ); } } |