WxTile constructor
const
WxTile({
- Key? key,
- Axis? direction,
- WxTileAlign? align,
- WxTileJustify? justify,
- bool? inline,
- bool? childWrap,
- bool? adaptiveSpacing,
- double? spacing,
- EdgeInsetsGeometry? margin,
- WxTileStyle? style,
- Widget? trailing,
- Widget? leading,
- 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,
});