WxListTile constructor

const WxListTile({
  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? inline,
  13. bool? textWrap,
  14. TextAlign? textAlign,
  15. double? textSpacing,
  16. Color? textColor,
  17. TextOverflow? textOverflow,
  18. bool? textSoftWrap,
  19. TextWidthBasis? textWidthBasis,
  20. Color? iconColor,
  21. double? iconOpacity,
  22. double? iconSize,
  23. double? titleSize,
  24. double? subtitleSize,
  25. Color? titleColor,
  26. Color? subtitleColor,
  27. int? titleMaxLines,
  28. int? subtitleMaxLines,
  29. FontWeight? titleWeight,
  30. FontWeight? subtitleWeight,
  31. TextStyle? titleStyle,
  32. TextStyle? subtitleStyle,
  33. TextStyle? secondaryStyle,
  34. WxListTileStyle? style,
  35. GestureTapCallback? onTap,
})

Create a list item tile

Implementation

const WxListTile({
  super.key,
  required this.title,
  this.subtitle,
  this.leading,
  this.trailing,
  this.margin,
  this.padding,
  this.spacing,
  this.adaptiveSpacing,
  this.align,
  this.justify,
  this.inline,
  this.textWrap,
  this.textAlign,
  this.textSpacing,
  this.textColor,
  this.textOverflow,
  this.textSoftWrap,
  this.textWidthBasis,
  this.iconColor,
  this.iconOpacity,
  this.iconSize,
  this.titleSize,
  this.subtitleSize,
  this.titleColor,
  this.subtitleColor,
  this.titleMaxLines,
  this.subtitleMaxLines,
  this.titleWeight,
  this.subtitleWeight,
  this.titleStyle,
  this.subtitleStyle,
  this.secondaryStyle,
  this.style,
  this.onTap,
});