1use crate::styles::ViewStyle; 2 3/// The root component. 4#[derive(Default)] 5pub struct Window { 6 /// Controls the appearance and layout of a Window. 7 pub style: ViewStyle, 8}