Form / Progress
Use a progress bar to indicate completion status of an operation.
from h2o_wave import site, ui
page = site['/demo']
page['example'] = ui.form_card(
box='1 1 4 7',
items=[
ui.progress(label='Indeterminate Progress', caption='Goes on forever'),
ui.progress(label='Standard Progress', caption='Downloading the interwebs...', value=0.25),
]
)
page.save()