25 lines
492 B
Dart
25 lines
492 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
//import components
|
|
import '../Components/Reminder.dart';
|
|
import '../Components/EditReminder.dart';
|
|
|
|
class TodayView extends StatefulWidget {
|
|
const TodayView({super.key});
|
|
|
|
@override
|
|
State<TodayView> createState() => _TodayViewState();
|
|
}
|
|
|
|
class _TodayViewState extends State<TodayView> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return ListView(
|
|
children: <Widget>[
|
|
Reminder(),
|
|
Reminder(),
|
|
]
|
|
);
|
|
}
|
|
}
|