use std::sync::Arc; use crate::{widgets::*, *}; use super::*; /// A wrapper around other containers for things you often want in a window pub struct Window { pub title_label: Label, pub floating: Floating, pub frame: Frame, pub resize: Resize, pub scroll: ScrollArea, } impl Window { // TODO: Into