ribir_core 0.4.0-alpha.2

A non-intrusive declarative GUI framework, to build modern native/wasm cross-platform applications.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod painting_ctx;
pub use painting_ctx::PaintingCtx;
mod layout_ctx;
mod widget_ctx;
pub use layout_ctx::*;
pub use widget_ctx::*;
pub(crate) mod build_ctx;
pub use build_ctx::{BuildCtx, BuildCtxHandle};
pub mod app_ctx;
#[cfg(feature = "tokio-async")]
pub use app_ctx::tokio_async::*;
pub use app_ctx::*;