StratoSDK is a framework with a declarative approach similar to Flutter/React, written and designed entirely for Rust.
| 1 | //! A headless implementation of the UI framework's platform abstraction. |
| 2 | //! |
| 3 | //! This provides enough functionality to run an app, but no GUI or visible output. |
| 4 | |
| 5 | mod app; |
| 6 | mod delegate; |
| 7 | mod event_loop; |
| 8 | mod windowing; |
| 9 | |
| 10 | pub use app::App; |
| 11 | pub use delegate::AppDelegate; |
| 12 | |
| 13 | #[cfg(target_os = "macos")] |
| 14 | pub(crate) use windowing::Window; |
| 15 |