Using mainAxisAlignment in a Row lets you align the row’s children horizontally (e.g. left, right). The cross axis to a Row ‘s main axis is vertical. So using crossAxisAlignment in a Row lets you define, how its children are aligned vertically . In a Column , it’s the opposite.19 Ara 2018
Read moreWhat is main axis alignment Flutter?
MainAxisAlignment is a property of Column widget. It is used to arrange children widgets into vertically format according to given axis . Today we would use the Column widget and make children widget into single column format in flutter.
Read moreWhat is main axis size Flutter?
Summary. When you use MainAxisSize on your Column or Row, they will determine the size of the Column or Row along the main axis, i.e, height for Column and width for Row .
Read more