WxInlineTile constructor
const
WxInlineTile({
- Key? key,
- required Widget title,
- Widget? subtitle,
- Widget? leading,
- Widget? trailing,
- EdgeInsetsGeometry? margin,
- EdgeInsetsGeometry? padding,
- double? spacing,
- bool? adaptiveSpacing,
- WxTileAlign? align,
- WxTileJustify? justify,
- bool? textWrap,
- TextAlign? textAlign,
- double? textSpacing,
- Color? textColor,
- Color? iconColor,
- TextStyle? titleStyle,
- TextStyle? subtitleStyle,
- TextStyle? secondaryStyle,
- WxListTileStyle? style,
- GestureTapCallback? onTap,
Creates an inline tile, a compact version of WxListTile.
By default, all the properties from WxListTile are inherited,
however the inline
property is always set to true
.
Implementation
const WxInlineTile({
super.key,
required super.title,
super.subtitle,
super.leading,
super.trailing,
super.margin,
super.padding,
super.spacing,
super.adaptiveSpacing,
super.align,
super.justify,
super.textWrap,
super.textAlign,
super.textSpacing,
super.textColor,
super.iconColor,
super.titleStyle,
super.subtitleStyle,
super.secondaryStyle,
super.style,
super.onTap,
});