SkeletonListTileStyle constructor

const SkeletonListTileStyle({
  1. bool hasLeading = true,
  2. SkeletonAvatarStyle? leadingStyle,
  3. SkeletonLineStyle? titleStyle = const SkeletonLineStyle(padding: EdgeInsets.all(0), height: 22),
  4. SkeletonLineStyle? subtitleStyle = const SkeletonLineStyle(height: 16, padding: EdgeInsetsDirectional.only(end: 32)),
  5. bool hasSubtitle = false,
  6. EdgeInsetsGeometry? padding = const EdgeInsets.symmetric(vertical: 8),
  7. double? contentSpacing = 8,
  8. double? verticalSpacing = 8,
})

Implementation

const SkeletonListTileStyle({
  this.hasLeading = true,
  this.leadingStyle, //  = const SkeletonAvatarStyle(padding: EdgeInsets.all(0)),
  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,
});