termux-gui 0.3.0

Rust bindings for Termux:GUI - Build Android GUI apps in Rust on Termux
Documentation
//! UI Components

mod text_view;
mod button;
mod edit_text;
mod checkbox;
mod switch;
mod radio;
mod spinner;
mod layout;
mod image_view;
mod progress_bar;
mod toggle_button;
mod space;
mod web_view;

pub use text_view::TextView;
pub use button::Button;
pub use edit_text::EditText;
pub use checkbox::Checkbox;
pub use switch::Switch;
pub use radio::{RadioButton, RadioGroup};
pub use spinner::Spinner;
pub use layout::{LinearLayout, NestedScrollView, FrameLayout, GridLayout, HorizontalScrollView, SwipeRefreshLayout, TabLayout};
pub use image_view::ImageView;
pub use progress_bar::ProgressBar;
pub use toggle_button::ToggleButton;
pub use space::Space;
pub use web_view::WebView;