mirror of
https://github.com/YGGverse/Yoda.git
synced 2025-01-16 09:40:01 +00:00
8 lines
127 B
Rust
8 lines
127 B
Rust
use gtk::Box;
|
|
|
|
pub fn new() -> Box
|
|
{
|
|
return Box::builder().orientation(
|
|
gtk::Orientation::Vertical
|
|
).build();
|
|
} |