diff --git a/lib/pages/TodayView.dart b/lib/pages/TodayView.dart index cad5346..1844bfc 100644 --- a/lib/pages/TodayView.dart +++ b/lib/pages/TodayView.dart @@ -1,5 +1,9 @@ import 'package:flutter/material.dart'; +//import components +import '../Components/Reminder.dart'; +import '../Components/EditReminderButton.dart'; + class TodayView extends StatefulWidget { const TodayView({super.key}); @@ -10,10 +14,12 @@ class TodayView extends StatefulWidget { class _TodayViewState extends State { @override Widget build(BuildContext context) { - return const Scaffold( - body: Center( - child: Icon(Icons.calendar_today) - ) + + return ListView( + children: [ + Reminder(), + Reminder(), + ] ); } }