XLists constructor

const XLists({
  1. Key? key,
  2. List<Widget>? leading,
  3. List<Widget>? title,
  4. List<Widget>? subtitle,
  5. List<Widget>? trailing,
  6. List<Widget>? top,
  7. List<Widget>? bottom,
  8. List<String>? titleText,
  9. List<String>? subtitleText,
  10. TextStyle? titleStyle,
  11. TextStyle? subtitleStyle,
  12. List<void Function()>? onTap,
  13. List<void Function()>? subtitleOnTap,
  14. List<void Function()>? trailonTap,
  15. double? leadingGap,
  16. double? upGap,
  17. double? leadingAndTitleGap,
  18. double? titleAndSubtitleGap,
  19. double? bottomGap,
  20. double? leadingWidth,
  21. Size? size,
  22. Color? color,
  23. EdgeInsetsGeometry? margin,
  24. bool? expanded = true,
  25. bool? centerTitle,
  26. bool? iscolumn = true,
})

Implementation

const XLists({
  super.key,
  this.leading,
  this.title,
  this.subtitle,
  this.trailing,
  this.top,
  this.bottom,
  this.titleText,
  this.subtitleText,
  this.titleStyle,
  this.subtitleStyle,
  this.onTap,
  this.subtitleOnTap,
  this.trailonTap,
  this.leadingGap,
  this.upGap,
  this.leadingAndTitleGap,
  this.titleAndSubtitleGap,
  this.bottomGap,
  this.leadingWidth,
  this.size,
  this.color,
  this.margin,
  this.expanded = true,
  this.centerTitle,
  this.iscolumn = true,
});