diff options
| author | 2020-02-06 00:28:25 +0100 | |
|---|---|---|
| committer | 2020-02-06 00:28:25 +0100 | |
| commit | ce45ecc23546efd85f04a76fcb1a3a691d259129 (patch) | |
| tree | b4a16e6e9e59285eadbf7df432a60c40cd1a568b /web/src/widget/text_input.rs | |
| parent | 9a7f7bfdf5afa329a60beab6556d739cf5d19b50 (diff) | |
| download | iced-ce45ecc23546efd85f04a76fcb1a3a691d259129.tar.gz iced-ce45ecc23546efd85f04a76fcb1a3a691d259129.tar.bz2 iced-ce45ecc23546efd85f04a76fcb1a3a691d259129.zip | |
Expose missing widget modules in `iced_web`
Diffstat (limited to 'web/src/widget/text_input.rs')
| -rw-r--r-- | web/src/widget/text_input.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/web/src/widget/text_input.rs b/web/src/widget/text_input.rs index 1fea787a..2b22b93f 100644 --- a/web/src/widget/text_input.rs +++ b/web/src/widget/text_input.rs @@ -5,6 +5,9 @@ //! [`TextInput`]: struct.TextInput.html //! [`State`]: struct.State.html use crate::{bumpalo, css, Bus, Css, Element, Length, Widget}; + +pub use iced_style::text_input::{Style, StyleSheet}; + use std::rc::Rc; /// A field that can be filled with text. |
