34 lines
736 B
Dart
34 lines
736 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
//import components
|
|
import '../Components/Reminder.dart';
|
|
import '../Components/EditReminderButton.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 Scaffold(
|
|
appBar: AppBar(
|
|
title: Text(
|
|
'Today',
|
|
style: TextStyle(color: Colors.white),
|
|
),
|
|
backgroundColor: Colors.cyan.shade700,
|
|
),
|
|
body: Container(
|
|
child: ListView(children: <Widget>[
|
|
Reminder(),
|
|
Reminder(),
|
|
]),
|
|
),
|
|
);
|
|
}
|
|
}
|