I am using nebular ngx-admin
template. I am facing some issues in nebular stepper. I have used four steps in one component.
I used Nebular API's methods in component file:
@ViewChild("stepper") stepper: NbStepperComponent;
this.stepper.next();
this.stepper.previous();
this.stepper.reset();
The next()
is navigate to next steps.
The previous()
is navigate to previous steps.
The reset()
is navigate to first step and reset all form data.
How can I navigate from 4th step to 2nd step?