How to add ui.stepper into Modularization example? #3676
Unanswered
bbalendran
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Hi @bbalendran, You should be able to call ui.button('Go to A', on_click=lambda: ui.navigate.to('/a')) Combined with the existing callbacks it might look like this: ui.button('Next', on_click=lambda: (stepper.next(), ui.navigate.to('/a'))) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Question
Experimenting with the ui.stepper and modularization:
How can I incorporate the navigation to a "page" when I click the next or back button on ui.stepper?
Modulation example path: https://github.com/zauberzeug/nicegui/tree/main/examples/modularization
Here is the menu.py file as part of "modulation" that I am trying to modify:
Beta Was this translation helpful? Give feedback.
All reactions