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.
This commit is contained in:
Héctor Ramón Jiménez 2020-01-16 05:54:22 +01:00
parent d6b20d3e79
commit c96492b956
11 changed files with 81 additions and 42 deletions

6
src/window.rs Normal file
View file

@ -0,0 +1,6 @@
//! Configure the window of your application in native platforms.
mod mode;
mod settings;
pub use mode::Mode;
pub use settings::Settings;