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