xengui 0.2.2

xengui: a reactive gui library in rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// SPDX-License-Identifier: Apache-2.0

pub mod button;
pub mod image;
pub mod label;
pub mod view;
pub mod textbox;

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

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