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