MadroidResponsiveRowColumn constructor

const MadroidResponsiveRowColumn({
  1. Key? key,
  2. required Axis direction,
  3. bool visible = true,
  4. double margin = 0.0,
  5. double? marginTop,
  6. double? marginLeft,
  7. double? marginRight,
  8. double? marginBottom,
  9. double? marginVertical,
  10. double? marginHorizontal,
  11. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  12. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
  13. MainAxisSize mainAxisSize = MainAxisSize.max,
  14. bool reverse = false,
  15. List<Widget> children = const <Widget>[],
})

Implementation

const MadroidResponsiveRowColumn({
  super.key,
  required this.direction,
  this.visible = true,
  this.margin = 0.0,
  this.marginTop,
  this.marginLeft,
  this.marginRight,
  this.marginBottom,
  this.marginVertical,
  this.marginHorizontal,
  this.crossAxisAlignment = CrossAxisAlignment.center,
  this.mainAxisAlignment = MainAxisAlignment.start,
  this.mainAxisSize = MainAxisSize.max,
  this.reverse = false,
  this.children = const <Widget>[],
});