1use rui::*; 2 3fn main() { 4 rui(vstack(( 5 "This is a test.", 6 rectangle().flex(), 7 "This is another test.", 8 rectangle().flex(), 9 ))); 10}