WxInlineTile constructor

const WxInlineTile({
  1. Key? key,
  2. required Widget title,
  3. Widget? subtitle,
  4. Widget? leading,
  5. Widget? trailing,
  6. EdgeInsetsGeometry? margin,
  7. EdgeInsetsGeometry? padding,
  8. double? spacing,
  9. bool? adaptiveSpacing,
  10. WxTileAlign? align,
  11. WxTileJustify? justify,
  12. bool? textWrap,
  13. TextAlign? textAlign,
  14. double? textSpacing,
  15. Color? textColor,
  16. Color? iconColor,
  17. TextStyle? titleStyle,
  18. TextStyle? subtitleStyle,
  19. TextStyle? secondaryStyle,
  20. WxListTileStyle? style,
  21. 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,
});