2020-01-16 05:54:22 +01:00
|
|
|
//! Configure the window of your application in native platforms.
|
|
|
|
|
mod mode;
|
2021-07-21 18:59:24 +07:00
|
|
|
mod position;
|
2020-01-16 05:54:22 +01:00
|
|
|
mod settings;
|
|
|
|
|
|
2020-07-01 06:09:39 +02:00
|
|
|
pub mod icon;
|
|
|
|
|
|
|
|
|
|
pub use icon::Icon;
|
2020-01-16 05:54:22 +01:00
|
|
|
pub use mode::Mode;
|
2021-07-21 18:59:24 +07:00
|
|
|
pub use position::Position;
|
2020-01-16 05:54:22 +01:00
|
|
|
pub use settings::Settings;
|
2021-09-02 16:30:14 +07:00
|
|
|
|
|
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
|
|
|
|
pub use crate::runtime::window::{move_to, resize};
|