1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
pub mod container;
pub mod control;
pub mod display;
pub mod layout;

pub use self::prelude::*;

pub mod prelude {
    pub use super::{
        control::{
            button::{self, Button},
            checkbox::{self, Checkbox},
            entry::{self, Entry},
            radio::{self, Radio},
            spin_entry::{self, SpinEntry},
            switch::{self, Switch},
        },
        display::{
            icon::{self, HtmlIcon, Icon, SvgIcon, UrlIcon},
            popover::{self, Popover},
        },
        layout::flexbox::{self, Flexbox},
    };
}