CustomListTitle constructor

const CustomListTitle({
  1. Key? key,
  2. Widget? title,
  3. Widget? trailing,
  4. String? titleText,
  5. int? count,
  6. AlignmentGeometry? alignment,
  7. Color? backgroundColor,
  8. double? largeSize,
  9. Offset? offset,
  10. double? smallSize,
  11. TextStyle? textStyle,
  12. Color? textColor,
  13. EdgeInsets? margin,
})

ListTitle 列表标题组件

Implementation

const CustomListTitle({
  super.key,
  this.title,
  this.trailing,
  this.titleText,
  this.count,
  this.alignment,
  this.backgroundColor,
  this.largeSize,
  this.offset,
  this.smallSize,
  this.textStyle,
  this.textColor,
  this.margin,
});