diff options
author | 2019-12-16 21:38:33 +0100 | |
---|---|---|
committer | 2019-12-16 21:38:33 +0100 | |
commit | 3702b109977a249247a0f1be40e57bec2cbaa4e3 (patch) | |
tree | 9919f2ee30ab29c83a2455f838313ab5bfb2f146 /native/src/widget.rs | |
parent | c1b9f6652517dcbf5ffd83b5db4a624f9a5b0da4 (diff) | |
parent | 514ccf8a72d660d77f26e085b545e5104389c138 (diff) | |
download | iced-3702b109977a249247a0f1be40e57bec2cbaa4e3.tar.gz iced-3702b109977a249247a0f1be40e57bec2cbaa4e3.tar.bz2 iced-3702b109977a249247a0f1be40e57bec2cbaa4e3.zip |
Merge pull request #111 from Maldela/svg
Svg and icon support
Diffstat (limited to 'native/src/widget.rs')
-rw-r--r-- | native/src/widget.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/native/src/widget.rs b/native/src/widget.rs index 71dcdc0d..ee7232cb 100644 --- a/native/src/widget.rs +++ b/native/src/widget.rs @@ -24,6 +24,7 @@ pub mod button; pub mod checkbox; pub mod column; pub mod container; +pub mod svg; pub mod image; pub mod radio; pub mod row; @@ -51,6 +52,8 @@ pub use scrollable::Scrollable; #[doc(no_inline)] pub use slider::Slider; #[doc(no_inline)] +pub use svg::Svg; +#[doc(no_inline)] pub use text::Text; #[doc(no_inline)] pub use text_input::TextInput; |