FaContainer
An empty and stylyable widget. Think of it as a div inside HTML. It can also be used to create custom widgets.
Note
-
fa_containerhas its default height set toauto, meaning its height depends on its children. -
If you use
fa_containerto create a custom widget withoutchildren, you must set the height to a specific value.
usage
let container = fa_container(&mut builder).build();
Return Entity of the widget which can optionally be used as child for another containable widget.
Available methods
id(&str)class(&str)display(&str)children([Entity])
Example
let boss = fa_text(&mut builder, "Hello Boss").build();
let mom = fa_text(&mut builder, "Hello Mom").build();
fa_container(&mut builder)
.id("#my-container")
.children([boss, mom])
.build();