refactor schedule view and cleaning

This commit is contained in:
ashrafzarkanisala
2024-09-22 20:47:34 +03:00
parent b3d891b2c8
commit 3a28f0ef9a
21 changed files with 1540 additions and 902 deletions

View File

@ -1,19 +1,19 @@
import 'package:flutter/material.dart';
// import 'package:flutter/material.dart';
class ScheduleEntry {
final List<bool> selectedDays;
final TimeOfDay time;
final bool functionOn;
final String category;
// class ScheduleEntry {
// final List<bool> selectedDays;
// final TimeOfDay time;
// final bool functionOn;
// final String category;
ScheduleEntry({
required this.selectedDays,
required this.time,
required this.functionOn,
required this.category,
});
// ScheduleEntry({
// required this.selectedDays,
// required this.time,
// required this.functionOn,
// required this.category,
// });
@override
String toString() =>
'ScheduleEntry(selectedDays: $selectedDays, time: $time, functionOn: $functionOn)';
}
// @override
// String toString() =>
// 'ScheduleEntry(selectedDays: $selectedDays, time: $time, functionOn: $functionOn)';
// }