blob: ea38cb9b77a5b021ef1769ecd1f1410b6869a26d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
import 'package:flutter/material.dart';
class HVACPage extends StatelessWidget {
const HVACPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container(
color: Colors.lime.shade50,
constraints: BoxConstraints.expand(),
alignment: Alignment.center,
child: Text(
'HVAC',
style: Theme.of(context).textTheme.headline1,
),
);
}
}
|