We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3b67cb4 commit a0aedfbCopy full SHA for a0aedfb
kitchenowl/lib/widgets/shopping_list/sliver_shopinglist_item_view.dart
@@ -79,7 +79,7 @@ class SliverShopinglistItemView extends StatelessWidget {
79
return SliverMainAxisGroup(slivers: [
80
if (main is List) ...main,
81
if (main is! List) main,
82
- if ((shoppingList?.recentItems.isNotEmpty ?? false) || isLoading)
+ if (((shoppingList?.recentItems.isNotEmpty ?? false) && (App.settings.recentItemsCount > 0)) || isLoading)
83
SliverCategoryItemGridList<ItemWithDescription>(
84
name: '${AppLocalizations.of(context)!.itemsRecent}:',
85
items: shoppingList?.recentItems
0 commit comments