alchemy 0.2.0

A cross-platform GUI framework written in Rust. Adapts to native view-layers on each platform. UIKit/React inspired.
1
2
3
4
5
6
7
//! This module implements Windows and their associated lifecycles.

mod manager;
pub(crate) use manager::WindowManager;

pub mod window;
pub use window::{AppWindow, Window};