Fix missing Subscription type in iced_web
This commit is contained in:
parent
0f2e20f5e5
commit
9ca65c9f18
5 changed files with 47 additions and 3 deletions
|
|
@ -61,18 +61,22 @@ use std::{cell::RefCell, rc::Rc};
|
|||
|
||||
mod bus;
|
||||
mod element;
|
||||
mod hasher;
|
||||
|
||||
pub mod style;
|
||||
pub mod subscription;
|
||||
pub mod widget;
|
||||
|
||||
pub use bus::Bus;
|
||||
pub use dodrio;
|
||||
pub use element::Element;
|
||||
pub use hasher::Hasher;
|
||||
pub use iced_core::{
|
||||
Align, Background, Color, Command, Font, HorizontalAlignment, Length,
|
||||
VerticalAlignment,
|
||||
};
|
||||
pub use style::Style;
|
||||
pub use subscription::Subscription;
|
||||
pub use widget::*;
|
||||
|
||||
/// An interactive web application.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue