Row

Type Alias Row 

Source
pub type Row = FunctionComponent<row>;
Expand description

Row layout component.

See row properties docs for more details on how to use them.

§Usage

use yew_layout::{Row, Align};

html! {
    <Row align={ Align::Center } wrap=true>
        { "Row children.." }
    </Row>
}

Aliased Type§

pub struct Row { /* private fields */ }