Yoda/src/app/browser/main.rs

16 lines
237 B
Rust
Raw Normal View History

2024-09-20 18:02:10 +03:00
#[path = "main/tab.rs"]
mod tab;
2024-09-18 22:07:52 +03:00
use gtk::prelude::BoxExt;
2024-09-20 18:02:10 +03:00
use gtk::Box;
2024-09-18 20:33:29 +03:00
2024-09-20 18:02:10 +03:00
pub fn new() -> Box {
let main = Box::builder()
.orientation(gtk::Orientation::Vertical)
.build();
2024-09-18 22:07:52 +03:00
2024-09-20 18:02:10 +03:00
main.append(&tab::new());
2024-09-18 22:07:52 +03:00
2024-09-20 18:02:10 +03:00
main
}