rust_widgets 0.9.6

Pure Rust cross-platform native GUI library with hardware-adaptive rendering, 60+ widgets, touch/gesture support, i18n, and SVG-pipeline-accurate output
1
2
3
4
5
6
7
8
9
10
11
12
//! WASM/WebAssembly platform backend.
//!
//! This backend uses a state-driven model backed by `BackendState<WasmHandleKind>`
//! for widget lifecycle. On `target_arch = "wasm32"` the event loop is driven by
//! `request_animation_frame` to avoid blocking the browser. On non-WASM targets
//! a simple polling fallback is used for development / testing.

pub mod platform_impl;
pub mod types;

pub use platform_impl::*;
pub use types::*;