macro_rules! aligned_column { () => { ... }; ($(row![$($ee:expr),* $(,)?]),+ $(,)?) => { ... }; }
Define a Grid as a sequence of rows
Grid
This is just special convenience syntax for defining a Grid. See also grid! documentation.
grid!
let my_widget = kas_widgets::aligned_column! [ row!["one", "two"], row!["three", "four"], ];