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