xengui 0.2.1

wgpu based, modern and high-performance GUI library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// SPDX-License-Identifier: Apache-2.0
pub mod app;
pub mod components;
pub mod core;
pub mod paint;
pub mod renderer;
pub mod style;
pub mod layout;

pub use app::App;
pub use app::AppConfig;
pub use app::WindowPosition;
pub use components::text::Text;
pub use core::VNode;
pub use paint::*;
pub use renderer::XenRenderer;
pub use style::*;
pub use layout::*;