iced/window.rs
1//! Configure the window of your application in native platforms.
2
3#[cfg(feature = "winit")]
4pub mod icon;
5
6#[cfg(feature = "winit")]
7pub use icon::Icon;
8
9#[cfg(feature = "winit")]
10pub use settings::{PlatformSpecific, Settings};
11
12pub use crate::core::window::*;
13pub use crate::runtime::window::*;