Yoda/src/app/browser/main.rs
2024-09-18 21:27:17 +03:00

8 lines
127 B
Rust

use gtk::Box;
pub fn new() -> Box
{
return Box::builder().orientation(
gtk::Orientation::Vertical
).build();
}