Explanation:
Read moreHow do you padding an elevated Button in Flutter?
In Flutter, you can provide padding property to Button widget. To provide padding to Button, assign the padding property with EdgeInsets object . The following code snippet applies padding of 30 to all the four sides of the button. padding: EdgeInsets.
Read more