WxListTileStyle.dense constructor

const WxListTileStyle.dense({
  1. EdgeInsetsGeometry? margin,
  2. bool? adaptiveSpacing,
  3. WxTileAlign? align,
  4. WxTileJustify? justify,
  5. bool? inline,
  6. bool? textWrap,
  7. TextAlign? textAlign,
  8. double? textSpacing,
  9. Color? textColor,
  10. TextOverflow? textOverflow,
  11. bool? textSoftWrap,
  12. TextWidthBasis? textWidthBasis,
  13. Color? iconColor,
  14. double? iconOpacity,
  15. double? iconSize,
  16. TextStyle? titleStyle,
  17. TextStyle? subtitleStyle,
  18. TextStyle? secondaryStyle,
  19. Color? titleColor,
  20. Color? subtitleColor,
  21. int? titleMaxLines,
  22. int? subtitleMaxLines,
  23. FontWeight? titleWeight,
  24. FontWeight? subtitleWeight,
})

Create a WxListTileStyle with some reasonable default values.

Implementation

const WxListTileStyle.dense({
  this.margin,
  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.titleStyle,
  this.subtitleStyle,
  this.secondaryStyle,
  this.titleColor,
  this.subtitleColor,
  this.titleMaxLines,
  this.subtitleMaxLines,
  this.titleWeight,
  this.subtitleWeight,
})  : padding = const EdgeInsets.symmetric(horizontal: 16, vertical: 8),
      spacing = 10.0,
      titleSize = 13.0,
      subtitleSize = 12.0;