ribir 0.4.0-alpha.26

A non-intrusive declarative GUI framework, to build modern native/wasm cross-platform applications.
Documentation
1
2
3
4
5
6
7
8
9
#[cfg(feature = "wgpu")]
mod wgpu_backend;
#[cfg(feature = "wgpu")]
pub(crate) use wgpu_backend::WgpuBackend as Backend;

#[cfg(not(any(feature = "wgpu")))]
mod mock_backend;
#[cfg(not(any(feature = "wgpu")))]
pub(crate) use mock_backend::MockBackend as Backend;