ResponsiveColumn.span constructor

ResponsiveColumn.span({
  1. required int span,
  2. int offset = 0,
  3. int order = 0,
  4. ResponsiveCrossAlignment? crossAxisAlignment,
  5. 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,
      );