The simplest way to create a button with icon and text in Flutter is to use the new Material button called ElevatedButton with an icon constructor . ElevatedButton. icon() gives you the ability to add the icon and label parameter to the button.
Read moreHow do I add an image to my high button flutter?
icon() which is used to create raised button with Icon images. Using RaisedButton. icon() widget can easily put icon at the left side of button. But to set icon at right side of raised button we have to modify the raised button structure and create custom raised button with Row widget.
Read more