Created
April 2, 2020 14:45
-
-
Save kervel/eba0eff08e759c8335ec68cc1fa66a39 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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