WxTile constructor

const WxTile({
  1. Key? key,
  2. Axis? direction,
  3. WxTileAlign? align,
  4. WxTileJustify? justify,
  5. bool? inline,
  6. bool? childWrap,
  7. bool? adaptiveSpacing,
  8. double? spacing,
  9. EdgeInsetsGeometry? margin,
  10. WxTileStyle? style,
  11. Widget? trailing,
  12. Widget? leading,
  13. required Widget child,
})

Create a basic tile

Implementation

const WxTile({
  super.key,
  this.direction,
  this.align,
  this.justify,
  this.inline,
  this.childWrap,
  this.adaptiveSpacing,
  this.spacing,
  this.margin,
  this.style,
  this.trailing,
  this.leading,
  required this.child,
});