zeus-widgets 0.3.0

A collection of widgets for egui
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod button;
mod combo_box;
mod label;
mod multi_label;
mod secure_text_edit;

pub use button::Button;
pub use combo_box::ComboBox;
pub use label::Label;
pub use multi_label::MultiLabel;
pub use secure_text_edit::SecureTextEdit;

#[cfg(feature = "secure-types")]
pub use secure_types::{SecureString, Zeroize};