Skip to content

Instantly share code, notes, and snippets.

@kervel
Created April 2, 2020 14:45
Show Gist options
  • Save kervel/eba0eff08e759c8335ec68cc1fa66a39 to your computer and use it in GitHub Desktop.
Save kervel/eba0eff08e759c8335ec68cc1fa66a39 to your computer and use it in GitHub Desktop.
label = widgets.Label(
value='A label')
html = widgets.HTML(
value='<b>Formatted</b> <font color="red">html</font>',
description=''
)
text = widgets.Text(
value='A text field',
description='text field'
)
textarea = widgets.Textarea(
value='A text area for longer texts',
description='text area'
)
# show the three together in a VBox (vertical box container)
widgets.VBox([label, html, text, textarea])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment