Skip to content

icarohs7/flutter_stepper

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flutter_stepper

horizontal stepper

- pubspec.yaml:

dependencies:
fa_stepper: ^0.0.1

- constructor:

FAStepper({
Key key,
@required this.steps,
this.physics,
this.type = FAStepperType.horizontal,
this.titleIconArrange = FAStepperTitleIconArrange.column,
this.stepNumberColor = IposColors.stepEdit,
this.currentStep = 0,
this.titleHeight = 66.0,
this.onStepTapped,
this.onStepContinue,
this.onStepCancel,
this.controlsBuilder,
}) : assert(steps != null),
assert(type != null), assert(currentStep != null),
assert(0 <= currentStep && currentStep < steps.length),
super(key: key);

About

horizontal stepper

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages

  • Dart 97.7%
  • Kotlin 1.1%
  • Swift 1.1%
  • Objective-C 0.1%