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<'open> { pub title_label: Label, open: Option<&'open mut bool>, pub area: Area, pub frame: Option, pub resize: Resize, pub scroll: Option, } impl<'open> Window<'open> { // TODO: Into