Yoda/src/app/browser/main.rs

8 lines
127 B
Rust
Raw Normal View History

2024-09-18 20:33:29 +03:00
use gtk::Box;
pub fn new() -> Box
{
return Box::builder().orientation(
gtk::Orientation::Vertical
).build();
}