TTimelineIndicator constructor

const TTimelineIndicator({
  1. Key? key,
  2. double size = 36.0,
  3. Color? color,
  4. Color? ringColor,
  5. Color? innerColor,
  6. double ringWidth = 2.0,
  7. double ringGap = 2.5,
  8. Widget? icon,
  9. IconData? iconData,
  10. double? iconSize,
  11. Color? iconColor,
  12. TVariant variant = TVariant.tonal,
  13. bool isActive = false,
  14. bool isCompleted = false,
  15. bool isDot = false,
  16. Widget? child,
  17. VoidCallback? onTap,
})

Implementation

const TTimelineIndicator({
  super.key,
  this.size = 36.0,
  this.color,
  this.ringColor,
  this.innerColor,
  this.ringWidth = 2.0,
  this.ringGap = 2.5,
  this.icon,
  this.iconData,
  this.iconSize,
  this.iconColor,
  this.variant = TVariant.tonal,
  this.isActive = false,
  this.isCompleted = false,
  this.isDot = false,
  this.child,
  this.onTap,
});