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.
6 lines
139 B
Rust
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;
|