blob: 843b381a45922219c6cc1ada240bf73a44c66c47 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
//! Leverage advanced concepts like custom widgets.
pub mod subscription {
//! Write your own subscriptions.
pub use crate::runtime::futures::subscription::{
from_recipe, into_recipes, Event, EventStream, Hasher, MacOS,
PlatformSpecific, Recipe,
};
}
pub mod widget {
//! Create custom widgets and operate on them.
pub use crate::core::widget::*;
pub use crate::runtime::task::widget as operate;
}
pub use crate::core::clipboard::{self, Clipboard};
pub use crate::core::image;
pub use crate::core::layout::{self, Layout};
pub use crate::core::mouse;
pub use crate::core::overlay::{self, Overlay};
pub use crate::core::renderer::{self, Renderer};
pub use crate::core::svg;
pub use crate::core::text::{self, Text};
pub use crate::core::Shell;
pub use crate::renderer::graphics;
pub use widget::Widget;
|