StratoSDK is a framework with a declarative approach similar to Flutter/React, written and designed entirely for Rust.
| 1 | mod app; |
| 2 | pub mod clipboard; |
| 3 | mod cursor_theme; |
| 4 | mod window_manager; |
| 5 | mod zbus; |
| 6 | |
| 7 | pub use app::{maybe_register_xlib_error_hook, take_encountered_bad_match_from_dri3_fence_from_fd}; |
| 8 | pub use clipboard::*; |
| 9 | pub use cursor_theme::*; |
| 10 | pub(crate) use window_manager::*; |
| 11 | pub use zbus::*; |
| 12 |