ElevatedButton.icon(
onPressed: null,
label: Text("Close"),
icon: Icon(Icons.close),
)
As seen in the picture, the icon is on the left, the text is on the right. How can I do the opposite?
>Solution :
wrap the
ElevatedButton.icon
with
Directionality
and make direction rtl
