remove unused dead code files

This commit is contained in:
2026-07-12 23:17:47 +02:00
parent fe2b3c43b2
commit 94794ff092
13 changed files with 0 additions and 198 deletions
-10
View File
@@ -1,10 +0,0 @@
import 'package:flutter/material.dart';
extension TimeOfDayExt on TimeOfDay {
bool isBefore(TimeOfDay other) => hour < other.hour && minute < other.minute;
bool isAfter(TimeOfDay other) => hour > other.hour && minute > other.minute;
TimeOfDay add({int hours = 0, int minutes = 0}) =>
replacing(hour: hour + hours, minute: minute + minutes);
}