StratoSDK is a framework with a declarative approach similar to Flutter/React, written and designed entirely for Rust.
| 1 | pub(crate) mod app; |
| 2 | pub mod delegate; |
| 3 | mod event_loop; |
| 4 | pub(crate) mod fonts; |
| 5 | #[cfg(target_os = "linux")] |
| 6 | pub mod linux; |
| 7 | |
| 8 | mod notifications; |
| 9 | #[cfg(target_family = "wasm")] |
| 10 | pub mod wasm; |
| 11 | |
| 12 | mod window; |
| 13 | |
| 14 | #[cfg(target_os = "windows")] |
| 15 | pub mod windows; |
| 16 | |
| 17 | use app::CustomEvent; |
| 18 | #[cfg(target_os = "linux")] |
| 19 | pub use app::WindowingSystem; |
| 20 | use event_loop::EventLoop; |
| 21 | #[cfg(target_os = "linux")] |
| 22 | pub use window::get_os_window_manager_name; |
| 23 | use window::Window; |
| 24 |