TF-4229 Add isSelected && condition to non-RTL selectedIconWidget rendering to match RTL behavior.
This commit is contained in:
@@ -221,7 +221,7 @@ class _PopupMenuItemActionWidgetState extends State<PopupMenuItemActionWidget> {
|
||||
child: Row(
|
||||
children: [
|
||||
if (iconWidget != null) iconWidget,
|
||||
if (!isArrangeRTL && selectedIconWidget != null)
|
||||
if (!isArrangeRTL && isSelected && selectedIconWidget != null)
|
||||
Padding(
|
||||
padding: const EdgeInsetsDirectional.only(end: 16),
|
||||
child: selectedIconWidget,
|
||||
|
||||
Reference in New Issue
Block a user