class controls.Row(Widget)
A Row is a container widget that arranges its contents in a horizontal row.
Note:
The layout is only performed when the widget is initially created; it
is not updated if you add or remove widgets later or change their sizes.
Constructor
- Row(items, align = 'c', spacing = 10, width = None, expand = None)
- Initializes with the items as subwidgets and arranges them horizontally with spacing
pixels between. Vertical alignment is controlled by align, which is one
of 't', 'c' or 'b' for top, centre or bottom. If width and expand are specified, the Row widget is made the specified width and the widget referenced by expand is has its width adjusted to fill the remaining space. Otherwise, the size of the Row widget is set according to its contents.
---