xengui 0.1.0

wgpu based, modern and high-performance GUI library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-License-Identifier: Apache-2.0
// crates/xengui/src/lib.rs
pub mod app;
pub mod components;
pub mod core;
pub mod renderer;

pub use app::App;
pub use app::AppConfig;
pub use app::WindowPosition;
pub use components::debug_text::DebugText;
pub use components::text::Text;
pub use components::text::TextProps;
pub use core::VNode;
pub use renderer::XenRenderer;