Skip to content
This repository has been archived by the owner on Jul 2, 2024. It is now read-only.

Commit

Permalink
Merge pull request #233 from blazern/news-feed-ui
Browse files Browse the repository at this point in the history
Small padding fix
  • Loading branch information
blazern authored Apr 19, 2022
2 parents e60db8b + 25b631e commit eaaa2ff
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions lib/ui/news/news_feed_page.dart
Original file line number Diff line number Diff line change
Expand Up @@ -135,8 +135,10 @@ class _NewsFeedPageState extends PageStatePlante<NewsFeedPage> {
allEntitiesOrdered: allLoadedShops,
);
},
child: _ProductAtShopNewsPieceWidget(
product, shop, _uiAddressesObtainer.requestAddressOf(shop)));
child: Padding(
padding: const EdgeInsets.only(bottom: 16),
child: _ProductAtShopNewsPieceWidget(product, shop,
_uiAddressesObtainer.requestAddressOf(shop))));
break;
}
widgets.add(widget);
Expand Down

0 comments on commit eaaa2ff

Please sign in to comment.