Seregon/StratoSDK

StratoSDK is a framework with a declarative approach similar to Flutter/React, written and designed entirely for Rust.

Rust/27.3 KB/No license
crates/strato-ui-renderer/src/windowing/winit/mod.rs
1pub(crate) mod app;
2pub mod delegate;
3mod event_loop;
4pub(crate) mod fonts;
5#[cfg(target_os = "linux")]
6pub mod linux;
7 
8mod notifications;
9#[cfg(target_family = "wasm")]
10pub mod wasm;
11 
12mod window;
13 
14#[cfg(target_os = "windows")]
15pub mod windows;
16 
17use app::CustomEvent;
18#[cfg(target_os = "linux")]
19pub use app::WindowingSystem;
20use event_loop::EventLoop;
21#[cfg(target_os = "linux")]
22pub use window::get_os_window_manager_name;
23use window::Window;
24