cosg 0.1.1

A wgpu-based UI library with a dark violet theme
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod app;
pub mod esc;
pub mod renderer;
pub mod theme;
pub mod widget;
pub mod widgets;

pub use app::{App, AppConfig};
pub use esc::Esc;
pub use theme::Theme;
pub use widget::{Rect, Widget, WidgetEvent};
pub use widgets::{Button, Container, Grid, Label};