summaryrefslogtreecommitdiffstats
path: root/lib/page_hvac.dart
diff options
context:
space:
mode:
Diffstat (limited to 'lib/page_hvac.dart')
-rw-r--r--lib/page_hvac.dart14
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,
+ ),
);
}
}