aligned_column

Macro aligned_column 

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

Define a Grid as a sequence of rows

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

ยงExample

let my_widget = kas_widgets::aligned_column! [
    row!["one", "two"],
    row!["three", "four"],
];