ResponsiveColumn.auto constructor
ResponsiveColumn.auto({
- int offset = 0,
- int order = 0,
- ResponsiveCrossAlignment? crossAxisAlignment,
- required Widget child,
Creates a column that takes the space of its child in the run of a ResponsiveRow
Implementation
ResponsiveColumn.auto({
int offset = 0,
int order = 0,
ResponsiveCrossAlignment? crossAxisAlignment,
required Widget child,
}) : this._(
child: child,
type: ResponsiveColumnType.auto,
offset: offset,
order: order,
crossAxisAlignment: crossAxisAlignment,
);