Reference Manual: (offline | online) Quickstart: (offline | online)

ui.text

Example

python:
    # Single-child widget, contains the following ui.vbox
    ui.window()

    # Multiple-child widget - all new widgets following this will be
    # added as children to it, until the next ui.close
    ui.vbox() 
    ui.text("To get to the next screen, click the 'Continue' button.")
    ui.close()
Reference Manual: (offline | online) Quickstart: (offline | online)