ma7moud3osman / easy_stepper

Flutter Package help you to build easy stepper widget with several customization
https://pub.dev/packages/easy_stepper
MIT License
90 stars 40 forks source link

Is there a property to stop the `loading_animation` ? #4

Closed OmarYehiaDev closed 1 year ago

OmarYehiaDev commented 1 year ago

I'm searching for a way to stop the loading animation inside the active step. What should I do?

ma7moud3osman commented 1 year ago

Hey Omar, You can stop the loading animation for the active step by providing activeIcon inside the Step you want to stop the animation in it.

  EasyStep(
      icon: Icon(Icons.reviews_outlined),
      activeIcon: Icon(Icons.reviews_rounded),
      title: 'Add Review',
  ),

Hope this helps.

OmarYehiaDev commented 1 year ago

Thank you, it worked! I hope if you can provide a standalone property to trigger the loading event, I think this will be much better :")

ma7moud3osman commented 1 year ago

Thank you for your feedback, I'm adding it as an enhancement for the next release and will keep you posted!