WxListTileStyle.dense constructor
const
WxListTileStyle.dense({
- EdgeInsetsGeometry? margin,
- bool? adaptiveSpacing,
- WxTileAlign? align,
- WxTileJustify? justify,
- bool? inline,
- bool? textWrap,
- TextAlign? textAlign,
- double? textSpacing,
- Color? textColor,
- TextOverflow? textOverflow,
- bool? textSoftWrap,
- TextWidthBasis? textWidthBasis,
- Color? iconColor,
- double? iconOpacity,
- double? iconSize,
- TextStyle? titleStyle,
- TextStyle? subtitleStyle,
- TextStyle? secondaryStyle,
- Color? titleColor,
- Color? subtitleColor,
- int? titleMaxLines,
- int? subtitleMaxLines,
- FontWeight? titleWeight,
- 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;