frui_widgets 0.0.1

Essential widgets for Frui UI framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![feature(min_specialization)]
#![feature(type_alias_impl_trait)]

mod container;
mod event_detectors;
mod flex;
mod scroll;
mod testing;
mod text;
mod widget_list;

pub use self::container::*;
pub use self::event_detectors::keyboard::*;
pub use self::flex::*;
pub use self::scroll::*;
pub use self::testing::*;
pub use self::text::*;
pub use self::widget_list::*;