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