agg-gui 0.2.0

Immediate-mode Rust GUI library with AGG rendering, Y-up layout, widgets, text, SVG, and native/WASM adapters
Documentation
1
2
3
4
5
6
7
pub(super) fn clipboard_get() -> Option<String> {
    crate::clipboard::get_text()
}

pub(super) fn clipboard_set(text: &str) {
    crate::clipboard::set_text(text);
}