diff --git a/lib/community/widgets/community_drawer.dart b/lib/community/widgets/community_drawer.dart index adb1240e6..e1c9d95f5 100644 --- a/lib/community/widgets/community_drawer.dart +++ b/lib/community/widgets/community_drawer.dart @@ -537,6 +537,7 @@ class CommunityItem extends StatelessWidget { onPressed: () async => await toggleFavoriteCommunity(context, community, isFavorite), icon: Icon( isFavorite ? Icons.star_rounded : Icons.star_border_rounded, + size: 24, semanticLabel: isFavorite ? l10n.removeFromFavorites : l10n.addToFavorites, ), ) diff --git a/lib/shared/multi_picker_item.dart b/lib/shared/multi_picker_item.dart index b4a0a5ac5..2e86259f2 100644 --- a/lib/shared/multi_picker_item.dart +++ b/lib/shared/multi_picker_item.dart @@ -40,6 +40,7 @@ class MultiPickerItem extends StatelessWidget { style: TextButton.styleFrom(foregroundColor: p.backgroundColor), child: Icon( p.icon, + size: 24, semanticLabel: p.label, color: p.onSelected == null ? null : p.foregroundColor ?? theme.textTheme.bodyMedium?.color, ),