iced/src/window.rs
Héctor Ramón Jiménez c96492b956 Expose window::Mode in iced
Although the Fullscreen API in the Web platform has some limitations, it
is still useful to be able to support fullscreen on the native side.
2020-01-16 05:54:22 +01:00

6 lines
139 B
Rust

//! Configure the window of your application in native platforms.
mod mode;
mod settings;
pub use mode::Mode;
pub use settings::Settings;