fix(mobile): Make icons consistent (all outlined) ()

* fix(mobile): Make icons consistent (all outlined)

* fix(mobile): make `date_range` icon outlined
This commit is contained in:
Damiano Ferrari 2025-03-24 16:10:15 +01:00 committed by GitHub
parent a285b1898e
commit df8ba21b7d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 7 additions and 6 deletions
mobile/lib
pages/search
widgets/asset_grid

View file

@ -701,25 +701,25 @@ class SearchPage extends HookConsumerWidget {
padding: const EdgeInsets.symmetric(horizontal: 16), padding: const EdgeInsets.symmetric(horizontal: 16),
children: [ children: [
SearchFilterChip( SearchFilterChip(
icon: Icons.people_alt_rounded, icon: Icons.people_alt_outlined,
onTap: showPeoplePicker, onTap: showPeoplePicker,
label: 'search_filter_people'.tr(), label: 'search_filter_people'.tr(),
currentFilter: peopleCurrentFilterWidget.value, currentFilter: peopleCurrentFilterWidget.value,
), ),
SearchFilterChip( SearchFilterChip(
icon: Icons.location_pin, icon: Icons.location_on_outlined,
onTap: showLocationPicker, onTap: showLocationPicker,
label: 'search_filter_location'.tr(), label: 'search_filter_location'.tr(),
currentFilter: locationCurrentFilterWidget.value, currentFilter: locationCurrentFilterWidget.value,
), ),
SearchFilterChip( SearchFilterChip(
icon: Icons.camera_alt_rounded, icon: Icons.camera_alt_outlined,
onTap: showCameraPicker, onTap: showCameraPicker,
label: 'search_filter_camera'.tr(), label: 'search_filter_camera'.tr(),
currentFilter: cameraCurrentFilterWidget.value, currentFilter: cameraCurrentFilterWidget.value,
), ),
SearchFilterChip( SearchFilterChip(
icon: Icons.date_range_rounded, icon: Icons.date_range_outlined,
onTap: showDatePicker, onTap: showDatePicker,
label: 'search_filter_date'.tr(), label: 'search_filter_date'.tr(),
currentFilter: dateRangeCurrentFilterWidget.value, currentFilter: dateRangeCurrentFilterWidget.value,

View file

@ -140,7 +140,8 @@ class ControlBottomAppBar extends HookConsumerWidget {
), ),
if (hasRemote && onArchive != null) if (hasRemote && onArchive != null)
ControlBoxButton( ControlBoxButton(
iconData: unarchive ? Icons.unarchive : Icons.archive, iconData:
unarchive ? Icons.unarchive_outlined : Icons.archive_outlined,
label: (unarchive label: (unarchive
? "control_bottom_app_bar_unarchive" ? "control_bottom_app_bar_unarchive"
: "control_bottom_app_bar_archive") : "control_bottom_app_bar_archive")
@ -198,7 +199,7 @@ class ControlBottomAppBar extends HookConsumerWidget {
ConstrainedBox( ConstrainedBox(
constraints: const BoxConstraints(maxWidth: 85), constraints: const BoxConstraints(maxWidth: 85),
child: ControlBoxButton( child: ControlBoxButton(
iconData: Icons.no_cell_rounded, iconData: Icons.no_cell_outlined,
label: "control_bottom_app_bar_delete_from_local".tr(), label: "control_bottom_app_bar_delete_from_local".tr(),
onPressed: enabled onPressed: enabled
? () { ? () {