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 area: Area, pub frame: Option, pub resize: Resize, pub scroll: ScrollArea, } impl Window { // TODO: Into