platform-glyph 0.1.1

winit event loop, hit-test, and input dispatch for the Glyph UI framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Platform event loop and windowing via winit + wgpu.
//!
//! `App::run` opens an 800x600 window with the default light theme.
//! Use `App::run_with_theme` to supply a custom `Theme`.

mod app;

pub use app::{App, AppBuilder, WindowCloser, WindowOpener};
#[cfg(feature = "hot-reload")]
pub use app::HotApp;
pub use core_glyph::Theme;