-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement the "Advanced" feature set from Iced.
This commit intends to implement a majority of the functionality needed when creating custom `iced` widgets.
- Loading branch information
1 parent
87f7eaa
commit de375ec
Showing
2 changed files
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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}; | ||
// } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters