CustomRowExtension extension

Extension on Row providing custom methods.

on

Properties

around Row
// This extension is used to align the children of a Row to the around. Row( children: [ Text('Hello'), Text('World') ] ).around,
no setter
between Row
// This extension is used to align the children of a Row to the start. Row( children: [ Text('Hello'), Text('World') ] ).start,
no setter
center Row
// This extension is used to align the children of a Row to the center. Row( children: [ Text('Hello'), Text('World') ] ).center,
no setter
end Row
// This extension is used to align the children of a Row to the end. Row( children: [ Text('Hello'), Text('World') ] ).end,
no setter
evenly Row
// This extension is used to align the children of a Row to the evenly. Row( children: [ Text('Hello'), Text('World') ] ).evenly,
no setter
min Row
// This extension is used to set the main axis size of a Row to min. // This means that the Row will take up the minimum amount of space Row( children: [ Text('Hello'), Text('World') ] ).min,
no setter

Methods

gap(double spacing) Row
Adds spacing between children in a Row widget.