Skip to content
Discussion options

You must be logged in to vote

splitter is container, separator is simple control.

from nicegui import ui

with ui.row():
    for i in range(9):
        with ui.column():
            for k in range(i+1):
                ui.label(str(k))
        ui.separator().props('vertical')
    else:
        with ui.column():
            for k in range(i+1+1):
                ui.label(str(k))

ui.run()

Replies: 2 comments 3 replies

Comment options

You must be logged in to vote
3 replies
@falkoschindler
Comment options

@python-and-novella
Comment options

@KingKDot
Comment options

Answer selected by KingKDot
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants