Expose missing widget modules in iced_web
This commit is contained in:
parent
9a7f7bfdf5
commit
ce45ecc235
5 changed files with 9 additions and 3 deletions
|
|
@ -18,15 +18,15 @@ use crate::{Bus, Css};
|
|||
use dodrio::bumpalo;
|
||||
|
||||
pub mod button;
|
||||
pub mod checkbox;
|
||||
pub mod container;
|
||||
pub mod image;
|
||||
pub mod radio;
|
||||
pub mod scrollable;
|
||||
pub mod slider;
|
||||
pub mod text_input;
|
||||
|
||||
mod checkbox;
|
||||
mod column;
|
||||
mod container;
|
||||
mod radio;
|
||||
mod row;
|
||||
mod space;
|
||||
mod text;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
//! Show toggle controls using checkboxes.
|
||||
use crate::{Bus, Color, Css, Element, Widget};
|
||||
|
||||
use dodrio::bumpalo;
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
//! Decorate content and apply alignment.
|
||||
use crate::{bumpalo, css, Align, Bus, Css, Element, Length, Widget};
|
||||
|
||||
/// An element decorating some content.
|
||||
|
|
|
|||
|
|
@ -1,3 +1,4 @@
|
|||
//! Create choices using radio buttons.
|
||||
use crate::{Bus, Color, Css, Element, Widget};
|
||||
|
||||
use dodrio::bumpalo;
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue