Show the trailing icon for the current day on rest days as well

This commit is contained in:
Roland Geider
2025-03-13 14:26:34 +01:00
parent 6cffdc9366
commit a2ef3278fa

View File

@@ -131,8 +131,8 @@ class DayHeader extends StatelessWidget {
style: Theme.of(context).textTheme.headlineSmall,
overflow: TextOverflow.ellipsis,
),
// subtitle: _dayData.date.isSameDayAs(DateTime.now()) ? Text(i18n.today) : null,
leading: const Icon(Icons.hotel),
trailing: _dayData.date.isSameDayAs(DateTime.now()) ? const Icon(Icons.today) : null,
minLeadingWidth: 8,
);
}