Skip to content

Commit

Permalink
Small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
PrimaelQuemerais committed Jan 22, 2025
1 parent 9fce363 commit d39ef88
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ class ProductPageTabBar extends StatelessWidget {
ProductPageTab(
labelBuilder: (BuildContext c) => knowledgePanelTitle.title,
builder: (Product p) => ListView.builder(
padding: EdgeInsets.zero,
padding: EdgeInsetsDirectional.zero,
itemCount: children.length - 1,
itemBuilder: (BuildContext context, int index) => children[index],
),
Expand Down Expand Up @@ -139,7 +139,7 @@ class ProductPageTabBar extends StatelessWidget {
labelBuilder: (BuildContext c) =>
AppLocalizations.of(c).product_page_tab_website,
builder: (Product p) => ListView(
padding: EdgeInsets.zero,
padding: EdgeInsetsDirectional.zero,
children: <Widget>[
WebsiteCard(p.website!),
],
Expand All @@ -152,7 +152,7 @@ class ProductPageTabBar extends StatelessWidget {
labelBuilder: (BuildContext c) =>
AppLocalizations.of(c).product_page_tab_prices,
builder: (Product p) => ListView(
padding: EdgeInsets.zero,
padding: EdgeInsetsDirectional.zero,
children: <Widget>[
PricesCard(p),
],
Expand All @@ -168,7 +168,7 @@ class ProductPageTabBar extends StatelessWidget {
labelBuilder: (BuildContext c) =>
AppLocalizations.of(c).product_page_tab_folksonomy,
builder: (Product p) => ListView(
padding: EdgeInsets.zero,
padding: EdgeInsetsDirectional.zero,
children: <Widget>[FolksonomyCard(p)],
),
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ class ReorderBottomSheet<T> extends StatelessWidget {
key: ValueKey<T>(item.data),
margin: const EdgeInsetsDirectional.only(
bottom: MEDIUM_SPACE),
padding: const EdgeInsets.all(12.0),
padding: const EdgeInsetsDirectional.all(12.0),
decoration: BoxDecoration(
color: item.visible
? theme.primaryMedium
Expand Down

0 comments on commit d39ef88

Please sign in to comment.