Box#
- class ignis.widgets.Box(*args: Any, **kwargs: Any)#
Bases:
Gtk.Box
.The main layout widget.
- Parameters:
**kwargs -- Properties to set.
Hint
You can use generators to set children.
widgets.Box( child=[widgets.Label(label=str(i)) for i in range(10)] )
widgets.Box( child=[widgets.Label(label='heh'), widgets.Label(label='heh2')], vertical=False, homogeneous=False, spacing=52 )