Type Definition yew_layout::Row[][src]

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 } cross_fill=true wrap=true>
        { "Row children.." }
    </Row>
}