stepper_a 1.0.0 copy "stepper_a: ^1.0.0" to clipboard
stepper_a: ^1.0.0 copied to clipboard

outdated

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.

39
likes
0
points
36
downloads

Publisher

unverified uploader

Weekly Downloads

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.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on stepper_a