blob: 17258a895631971ea471e70211711ab72b588f11 (
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 DashboardPage extends StatelessWidget {
const DashboardPage({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Container(
color: Colors.lightGreen,
constraints: BoxConstraints.expand(),
alignment: Alignment.center,
child: Text(
'Dashboard',
style: Theme.of(context).textTheme.headline1,
),
);
}
}
|