Simple tracking widget to show completed and remaining journey steps.
Tracking order or journey with custom color and text styles.
/example folder.
TrackingWidget(
direction: Axis.horizontal,
itemGap: 35,
color: Colors.grey,
trackList: [ Track(isActive: true, labelText: "Created"),
Track(isActive: true, labelText: "Out of Delivery"),
Track(isActive: false, labelText: "Fulfilled"),
],
)https://pub.dev/packages/steps_widget
Widget main class is TrackingWidget. Two type Horizontal or Vertical. Easy to user. Just provide list and tracks for rendering the track.