Skip to content

alexwastl/flutter_circle_stepper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A simple circle stepper to display progress in a Flutter app.

Features

screenshot

Usage

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'),
),

Additional information

Contribute via GitHub: https://github.com/alexwastl/flutter_circle_stepper