- Source
Example
//Python:
import dash
import dash_lumino_components as dlc
boxPanel = dlc.BoxPanel([
dlc.SplitPanel([], id="split-panel")
], id="box-panel")
Type Definitions
propTypes
PropertiesName | Type | Description |
---|---|---|
id | string | ID of the widget |
alignment | string | the content alignment of the layout ("start" | "center" | "end" | "justify") |
direction | string | a type alias for a box layout direction ("left-to-right" | "right-to-left" | "top-to-bottom" | "bottom-to-top") |
spacing | number | The spacing between items in the layout |
addToDom | boolean | bool if the object has to be added to the dom directly |
children | Array.<Panel, SplitPanel, DockPanel> | The widgets |
- Source