From b3f5b8ede865ad4e57daf4498da0bd26d17ead54 Mon Sep 17 00:00:00 2001 From: Marius Date: Mon, 19 Jan 2026 19:18:32 +0100 Subject: [PATCH] fix(mobile): album selector icon visibility (#25311) Add explicit color to sort direction arrows and view mode toggle icons in album selector widget. Previously they were invisible in light view, when opening album selector from image viewer. --- .../widgets/album/album_selector.widget.dart | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/mobile/lib/presentation/widgets/album/album_selector.widget.dart b/mobile/lib/presentation/widgets/album/album_selector.widget.dart index c42f49091f..101f0d31d8 100644 --- a/mobile/lib/presentation/widgets/album/album_selector.widget.dart +++ b/mobile/lib/presentation/widgets/album/album_selector.widget.dart @@ -344,8 +344,8 @@ class _SortButtonState extends ConsumerState<_SortButton> { Padding( padding: const EdgeInsets.only(right: 5), child: albumSortIsReverse - ? const Icon(Icons.keyboard_arrow_down) - : const Icon(Icons.keyboard_arrow_up_rounded), + ? Icon(Icons.keyboard_arrow_down, color: context.colorScheme.onSurface) + : Icon(Icons.keyboard_arrow_up_rounded, color: context.colorScheme.onSurface), ), Text( albumSortOption.label.t(context: context), @@ -542,7 +542,11 @@ class _QuickSortAndViewMode extends StatelessWidget { initialIsReverse: currentIsReverse, ), IconButton( - icon: Icon(isGrid ? Icons.view_list_outlined : Icons.grid_view_outlined, size: 24), + icon: Icon( + isGrid ? Icons.view_list_outlined : Icons.grid_view_outlined, + size: 24, + color: context.colorScheme.onSurface, + ), onPressed: onToggleViewMode, ), ],