stepper_a 1.0.0
stepper_a: ^1.0.0 copied to clipboard
StepperA is a simple and robust Flutter package which is making it possible to use FormKey validation and easy access your own button press control.
Flutter StepperA #
Key Features #
Stepper A can easily build Stepper facility of you any flutter app.
- Form Validation with FormKey [GlobalKey
- Customized Stepper step Shape [Rectangle, Circle]
- Smooth sliding with Animation
- Easily Customize UI Color
package.yaml #
stepper_a: <latest version>
Import #
import 'package:stepper_a/stepper_a.dart';
Simple Example #
StepperA(
stepCompleteColor: Colors.blueAccent,
inactiveColor: Colors.black38,
currentStepColor: Colors.green,
stepperSize: const Size(350,70),
borderShape: BorderShape.rectangle,
stepperAxis: Axis.horizontal,
formKey: formKey,
previousButton: Button(
buttonIconColor: Colors.white,
backgroundColor: Colors.blueAccent,
position: Position(
left: 10,
bottom: 20)
),
forwardButton: Button(
buttonIconColor: Colors.white,
backgroundColor: Colors.blueAccent,
position: Position(
right: 10,
bottom: 20)
),
stepperBodyWidget: [
const StepOne(),
const StepTwo(),
Container(
color: Colors.white,
child: const Center(
child: Text("Step four",style: TextStyle(
fontSize: 18,
fontWeight: FontWeight.w700),)),)
]
)
##ScreenShot
![Rectangle Type Step] (https://drive.google.com/file/d/1PutrcZ_Iihge964lr-G3IZitNdiaZhii/view?usp=share_link) ![Circle Type Step] (https://drive.google.com/file/d/10jCqJdlE9J4EeRCtd52vxESwRrj8xeFB/view?usp=share_link)
Support #
If this package was useful to you, helped you to easily deliver your app, saved you a lot of time, or you just want to support the project, I would be grateful if you give us a rating.