WxTextTile constructor

const WxTextTile({
  1. Key? key,
  2. double? spacing,
  3. EdgeInsetsGeometry? margin,
  4. TextAlign? align,
  5. Color? color,
  6. TextOverflow? overflow,
  7. bool? softWrap,
  8. TextWidthBasis? widthBasis,
  9. TextStyle? titleStyle,
  10. Color? titleColor,
  11. FontWeight? titleWeight,
  12. double? titleSize,
  13. int? titleMaxLines,
  14. TextStyle? subtitleStyle,
  15. Color? subtitleColor,
  16. FontWeight? subtitleWeight,
  17. double? subtitleSize,
  18. int? subtitleMaxLines,
  19. WxTextTileStyle? style,
  20. required Widget title,
  21. Widget? subtitle,
})

Implementation

const WxTextTile({
  super.key,
  this.spacing,
  this.margin,
  this.align,
  this.color,
  this.overflow,
  this.softWrap,
  this.widthBasis,
  this.titleStyle,
  this.titleColor,
  this.titleWeight,
  this.titleSize,
  this.titleMaxLines,
  this.subtitleStyle,
  this.subtitleColor,
  this.subtitleWeight,
  this.subtitleSize,
  this.subtitleMaxLines,
  this.style,
  required this.title,
  this.subtitle,
});