Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 283 Bytes

README.md

File metadata and controls

17 lines (11 loc) · 283 Bytes

UI Composer

This repository is so WIP dude

Rust-based library for fast native UI rendering.

Getting started

After adding the library, you should be able to create a simple window like this:

use ui_composer::prelude::*;

fn main() {
    App::run(Window(()));
}