Answers for "elevatedbutton.icon position change to right flutter"

1

elevatedbutton.icon position change to right flutter

Directionality(
      textDirection: TextDirection.rtl,
      child: ElevatedButton.icon(
        onPressed: () {},
        icon: Icon(
          Icons.arrow_back,
        ),
        label: Text("Test"),
))
Posted by: Guest on March-02-2022

Code answers related to "elevatedbutton.icon position change to right flutter"

Browse Popular Code Answers by Language