feat(wrapper): remove redundant Wrapper component

This commit is contained in:
doryan 2024-08-16 23:24:10 +04:00
parent bbe0f42bb1
commit 32fd0305ad
2 changed files with 0 additions and 19 deletions

View File

@ -4,6 +4,5 @@ pub mod input;
pub mod menu;
pub mod pages;
pub mod tabs;
pub mod wrapper;
use crate::model::builder_traits;

View File

@ -1,18 +0,0 @@
use gtk4 as gtk;
use gtk::{Orientation, builders::BoxBuilder, Box};
#[allow(dead_code)]
pub struct Wrapper;
impl Wrapper{
pub fn row_builder() -> BoxBuilder {
Box::builder().orientation(Orientation::Vertical)
}
pub fn col_builder() -> BoxBuilder {
Box::builder().orientation(Orientation::Horizontal)
}
}