Skip to content

Commit

Permalink
fix: 4466 - icons for list page popup items
Browse files Browse the repository at this point in the history
  • Loading branch information
monsieurtanuki committed Aug 12, 2023
1 parent 439aeb4 commit d4ed349
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,10 @@ abstract class ProductListPopupItem {
) =>
PopupMenuItem<ProductListPopupItem>(
value: this,
child: Text(getTitle(appLocalizations)),
child: ListTile(
leading: Icon(getIconData()),
title: Text(getTitle(appLocalizations)),
),
);
}

Expand Down

0 comments on commit d4ed349

Please sign in to comment.