-
Hello,
With thanks and greetings |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Yes. NiceGUI is a full featured web-UI framework. You can structure your UI elements by using |
Beta Was this translation helpful? Give feedback.
Yes. NiceGUI is a full featured web-UI framework.
You can structure your UI elements by using
ui.column()
,ui.row()
orui.card()
. These can also be put into methods or functions for better modularity. See https://github.com/zauberzeug/nicegui/tree/main/examples/modularization for an example. Forms can be implemented withui.input()
andui.number
elements as well as toggles, combo-boxes and the like (see https://nicegui.io/reference). Useui.button
to trigger actions like saving the values from the elements to database.