move window settings to iced_native

This commit is contained in:
Richard 2022-10-19 22:56:00 -03:00 committed by bungoboingo
parent a386788b67
commit 1bc0c480f9
11 changed files with 62 additions and 69 deletions

View file

@ -1,12 +1,16 @@
//! Build window-based GUI applications.
mod action;
mod event;
mod icon;
mod id;
mod mode;
mod user_attention;
pub use action::Action;
pub use event::Event;
pub use icon::Icon;
pub use id::Id;
pub use mode::Mode;
pub use user_attention::UserAttention;
pub use position::Position;
pub use settings::Settings;