xengui 0.2.5

a retained-mode gui library in rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: Apache-2.0
pub mod view;
pub mod label;
pub mod button;
pub mod link;
pub mod textbox;
pub mod image;

pub use view::View;
pub use label::Label;
pub use button::Button;
pub use link::Link;
pub use textbox::TextBox;
pub use image::{ image_source_from_bytes, Image, ImageSource, ObjectFit };

#[cfg(not(target_arch = "wasm32"))]
pub use image::image_source_from_path;