ui.Panel

A widget that can hold other widgets. Use panels to construct complex combinations of nested widgets.

Panels can be added to ui.root but not printed to the console with print().

UsageReturns
ui.Panel(widgets, layout, style)ui.Panel
ArgumentTypeDetails
widgetsList, optionalThe list of widgets or a single widget to add to the panel. Defaults to an empty array.
layoutString|ui.Panel.Layout, optionalThe layout to use for this panel. If a string is passed in, it's taken as a shortcut to the layout constructor with that name. Defaults to 'flow'.
styleObject, optionalAn object of allowed CSS styles with their values to be set for this widget. See style() documentation.