row

Function row 

Source
pub fn row<F>(args: RowArgs, scope_config: F)
where F: FnOnce(&mut RowScope<'_>),
Expand description

A row component that arranges its children horizontally.

The row component is a fundamental building block for creating horizontal layouts. It takes a set of child components and arranges them one after another in a single row. The layout behavior can be extensively customized through the RowArgs struct.

Children are added via the scope closure, which provides a RowScope to add children declaratively.