SkeletonListTileStyle constructor
const
SkeletonListTileStyle({
- bool hasLeading = true,
- SkeletonAvatarStyle? leadingStyle,
- SkeletonLineStyle? titleStyle = const SkeletonLineStyle(padding: EdgeInsets.all(0), height: 22),
- SkeletonLineStyle? subtitleStyle = const SkeletonLineStyle(height: 16, padding: EdgeInsetsDirectional.only(end: 32)),
- bool hasSubtitle = false,
- EdgeInsetsGeometry? padding = const EdgeInsets.symmetric(vertical: 8),
- double? contentSpacing = 8,
- double? verticalSpacing = 8,
Implementation
const SkeletonListTileStyle({
this.hasLeading = true,
this.leadingStyle,
this.titleStyle = const SkeletonLineStyle(
padding: EdgeInsets.all(0),
height: 22,
),
this.subtitleStyle = const SkeletonLineStyle(
height: 16,
padding: EdgeInsetsDirectional.only(end: 32),
),
this.hasSubtitle = false,
this.padding = const EdgeInsets.symmetric(vertical: 8),
this.contentSpacing = 8,
this.verticalSpacing = 8,
});