fixed style

This commit is contained in:
Giulia
2023-09-28 14:45:00 +02:00
committed by Joe Küng
parent 6b3208b855
commit a8074c8701
3 changed files with 25 additions and 12 deletions

View File

@@ -14,12 +14,20 @@ class TodayView extends StatefulWidget {
class _TodayViewState extends State<TodayView> {
@override
Widget build(BuildContext context) {
return ListView(
children: <Widget>[
Reminder(),
Reminder(),
]
return Scaffold(
appBar: AppBar(
title: Text(
'Today',
style: TextStyle(color: Colors.white),
),
backgroundColor: Colors.cyan.shade700,
),
body: Container(
child: ListView(children: <Widget>[
Reminder(),
Reminder(),
]),
),
);
}
}