How to crate a Ionic 2 wizard?

I want register some four pages using form registration with wizard. It’s possible to create ionic 2 Wizard?

You can use the slides module. Disable sliding and manually slide to the next slide if the user enters a valid value.

In my app https://DebtsTracker.io I created a separate wizard class that orchestrates flow e.g push and pop pages.

My approach is that when I create a page I pass 2 callback parameters - something like onCompleted & onCanceled and wizard decides what to do when handling this events.

check this if help https://github.com/JoxieMedina/ionic2-simple-conditional-wizard

1 Like