windjammer-ui 0.3.6

Cross-platform UI framework for Windjammer (Web, Desktop, Mobile)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Desktop platform implementation (egui backend)

// Re-export existing desktop functionality
// (This is a placeholder for organizing platform-specific code)

#[cfg(all(not(target_arch = "wasm32"), feature = "desktop"))]
pub use crate::app;

#[cfg(all(not(target_arch = "wasm32"), feature = "desktop"))]
pub use crate::app_docking;

#[cfg(test)]
mod tests {
    #[test]
    fn test_desktop_platform() {
        // Platform tests will go here
    }
}