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_hvac.dart | |
parent | d3e731d226bdab810572c14b25d6991268315bba (diff) |
Nice animation when switching pages
Diffstat (limited to 'lib/page_hvac.dart')
-rw-r--r-- | lib/page_hvac.dart | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/lib/page_hvac.dart b/lib/page_hvac.dart index 9a2904e..5715290 100644 --- a/lib/page_hvac.dart +++ b/lib/page_hvac.dart @@ -1,12 +1,18 @@ import 'package:flutter/material.dart'; class HVACPage extends StatelessWidget { - // TODO placeholder + + const HVACPage({Key? key}) : super(key: key); @override Widget build(BuildContext context) { - return Text( - 'HVAC', - style: Theme.of(context).textTheme.headline1, + return Container( + color: Colors.yellow, + constraints: BoxConstraints.expand(), + alignment: Alignment.center, + child: Text( + 'HVAC', + style: Theme.of(context).textTheme.headline1, + ), ); } } |