Check if a date is tomorrow
static bool isTomorrow(DateTime date) { final tomorrow = DateTime.now().add(const Duration(days: 1)); return isSameDay(date, tomorrow); }