semtext 0.1.0

Terminal UI Library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// widget/mod.rs
//
// Copyright (c) 2020  Douglas P Lau
//
//! User Interface Widgets

mod border;
mod button;
mod label;
mod scrollview;
mod spacer;

pub use border::{Border, BorderStyle};
pub use button::Button;
pub use label::Label;
pub use scrollview::{ScrollBar, ScrollView};
pub use spacer::Spacer;