A simple circle stepper to display progress in a Flutter app.
FlutterCircleStepper(
stepperLength: 5,
progressColor: Colors.blue,
unfinishedColor: Colors.grey,
// optional callbacks for stepper interaction
onStepTapped: (index) => debugPrint('Stepper at $index tapped'),
onNext: () => debugPrint('Next pressed'),
onPrevious: () => debugPrint('Previous pressed'),
),
Contribute via GitHub: https://github.com/alexwastl/flutter_circle_stepper