aligned_row

Macro aligned_row 

Source
macro_rules! aligned_row {
    () => { ... };
    ($(column![$($ee:expr),* $(,)?]),+ $(,)?) => { ... };
}
Expand description

Define a Grid as a sequence of columns

This is just special convenience syntax for defining a Grid. See also grid! documentation.

ยงExample

let my_widget = kas_widgets::aligned_row! [
    column!["one", "two"],
    column!["three", "four"],
];