From 51914867ad5e8187d421d840832d12c23fe09827 Mon Sep 17 00:00:00 2001 From: Freek van de Ven Date: Wed, 24 Jul 2024 14:02:12 +0200 Subject: [PATCH] fix: give selected day in the template legend a white color --- .../lib/src/ui/widgets/template_legend.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/flutter_availability/lib/src/ui/widgets/template_legend.dart b/packages/flutter_availability/lib/src/ui/widgets/template_legend.dart index ba946a7..22e3522 100644 --- a/packages/flutter_availability/lib/src/ui/widgets/template_legend.dart +++ b/packages/flutter_availability/lib/src/ui/widgets/template_legend.dart @@ -98,8 +98,7 @@ class _TemplateLegendState extends State { ), child: _TemplateLegendItem( name: translations.templateSelectionLabel, - backgroundColor: - colors.selectedDayColor ?? colorScheme.primaryFixedDim, + backgroundColor: Colors.white, borderColor: colorScheme.primary, ), ),