compo-window 0.1.0

Cross-platform window component for the Compo declarative and reactive component framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[cfg(target_os = "android")]
mod droid;
#[cfg(target_os = "ios")]
mod ios;
#[cfg(target_os = "macos")]
mod mac;
#[cfg(windows)]
mod win;

#[cfg(target_os = "android")]
pub use droid::*;
#[cfg(target_os = "ios")]
pub use ios::*;
#[cfg(target_os = "macos")]
pub use mac::*;
#[cfg(windows)]
pub use win::*;