Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement the "Advanced" feature set from Iced. #29

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions src/advanced.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
//! Leverage advanced concepts like custom widgets.
// pub use crate::application::Application;
pub use iced_core::clipboard::{self, Clipboard};
pub use iced_core::image;
pub use iced_core::layout::{self, Layout};
pub use iced_core::mouse;
pub use iced_core::overlay::{self, Overlay};
pub use iced_core::renderer::{self, Renderer};
pub use iced_core::svg;
pub use iced_core::text::{self, Text};
pub use iced_core::widget::{self, Widget};
pub use iced_core::Hasher;
pub use iced_core::Shell;
pub use iced_renderer::graphics;

// pub mod subscription {
// //! Write your own subscriptions.
// pub use iced_runtime::futures::subscription::{EventStream, Hasher, Recipe};
// }
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ use iced_widget::style::Theme;
/// as much as possible.
pub mod iced;

pub mod advanced;
mod conversions;
mod render;
mod systems;
Expand Down
Loading