Skip to content
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