ribir 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
/// for platform specific code

#[cfg(target_os = "macos")]
mod macos;
#[cfg(target_os = "macos")]
pub use macos::register_platform_app_events_handlers;

#[cfg(not(target_os = "macos"))]
pub fn register_platform_app_events_handlers() {}