Difference between SizedBox and Padding,Margin

Viewed 911

Should we use Marging,Padding or SizedBox to give spacing between widgets the Widgets the Margin and padding does the Work, so then whats the use of SizedBox

2 Answers

SizedBox creates space between widget to widget only just height and width. On the other hand, Margin is an element’s personal space — how much distance the element wants to keep with other elements around it. Padding is how much an element is away from itself — how much distance an element wants to keep with the elements inside it. They create distance top, bottom, left, and right. enter image description here

There are widgets that require a specific size so that they can be drawn, such as the GoogleMaps widget since the Height and Width must be defined, for this we can simply use a Container but more specifically the SizedBox widget helps us in this, although it is to everyone's taste

Related