TrackingWidget constructor

const TrackingWidget({
  1. Key? key,
  2. required List<Track> trackList,
  3. Axis direction = Axis.horizontal,
  4. double itemGap = 40.0,
  5. Color activeColor = const Color(0xff1ab506),
  6. Color color = const Color(0xffd8d8d8),
  7. TextStyle? labelStyle,
  8. TextStyle? dateStyle,
})

Implementation

const TrackingWidget(
    {this.key,
    required this.trackList,
    this.direction = Axis.horizontal,
    this.itemGap = 40.0,
    this.activeColor = const Color(0xff1ab506),
    this.color = const Color(0xffd8d8d8),
    this.labelStyle,
    this.dateStyle
    })
    : super(key: key);