CustomSliverTitle constructor

const CustomSliverTitle({
  1. Key? key,
  2. Decoration? decoration,
  3. EdgeInsetsGeometry? padding,
  4. Color? color,
  5. Widget? title,
  6. String? titleText,
  7. Widget? action,
  8. String? actionText,
})

SliverTitle 标题 Sliver 组件

Implementation

const CustomSliverTitle({
  super.key,
  this.decoration,
  this.padding,
  this.color,
  this.title,
  this.titleText,
  this.action,
  this.actionText,
});