macro_rules! hstack { (gap: $gap:expr; $($child:expr),* $(,)?) => { ... }; ($($child:expr),* $(,)?) => { ... }; }
Create a horizontal stack with children
use revue::prelude::*; let view = hstack![ Text::new("Left"), Text::new("Right"), ]; // With gap let view = hstack![gap: 1; Text::new("A"), Text::new("B"), ];