AntdFlexStyle constructor

const AntdFlexStyle({
  1. MainAxisAlignment mainAxisAlignment = MainAxisAlignment.start,
  2. MainAxisSize mainAxisSize = MainAxisSize.max,
  3. CrossAxisAlignment crossAxisAlignment = CrossAxisAlignment.center,
  4. TextDirection? textDirection,
  5. VerticalDirection verticalDirection = VerticalDirection.down,
  6. TextBaseline? textBaseline,
  7. Clip clipBehavior = Clip.none,
  8. double spacing = 0.0,
  9. bool? expanded,
})

Implementation

const AntdFlexStyle({
  this.mainAxisAlignment = MainAxisAlignment.start,
  this.mainAxisSize = MainAxisSize.max,
  this.crossAxisAlignment = CrossAxisAlignment.center,
  this.textDirection,
  this.verticalDirection = VerticalDirection.down,
  this.textBaseline,
  this.clipBehavior = Clip.none,
  this.spacing = 0.0,
  this.expanded,
});