diff options
| author | 2020-04-02 16:53:54 +0200 | |
|---|---|---|
| committer | 2020-04-02 16:53:54 +0200 | |
| commit | 3aafd2c1f7539806449b116fa98d6bf0fff94de8 (patch) | |
| tree | 727eb202e24d66836065e89c279d400c053563c0 /src/widget | |
| parent | 2fa6edf7a8b2a6e06b42ff9879fe81cbd1a957c6 (diff) | |
| parent | 4a498ed0e3d0526ce9f47b7eefa0b2716f9b27a8 (diff) | |
| download | iced-3aafd2c1f7539806449b116fa98d6bf0fff94de8.tar.gz iced-3aafd2c1f7539806449b116fa98d6bf0fff94de8.tar.bz2 iced-3aafd2c1f7539806449b116fa98d6bf0fff94de8.zip | |
Merge pull request #252 from hecrj/improvement/documentation
Update and improve documentation
Diffstat (limited to '')
| -rw-r--r-- | src/widget.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/widget.rs b/src/widget.rs index 91ea1ed4..758dc930 100644 --- a/src/widget.rs +++ b/src/widget.rs @@ -30,7 +30,7 @@ mod platform { pub use iced_winit::svg::{Handle, Svg}; } - pub use iced_winit::Text; + pub use iced_winit::{Space, Text}; #[doc(no_inline)] pub use { @@ -40,6 +40,10 @@ mod platform { text_input::TextInput, }; + #[cfg(feature = "canvas")] + #[doc(no_inline)] + pub use canvas::Canvas; + /// A container that distributes its contents vertically. /// /// This is an alias of an `iced_native` column with a default `Renderer`. |
