ribir_core 0.3.0-alpha.2

Ribir is a framework for building modern native/wasm cross-platform user interface 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::*;