guillotine 0.3.0

A no_std graphical user interface framework in Rust for embedded devices prioritizing resource efficiency and ergonomics.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
## Examples

To run the [examples](./examples), you need to enable the `simulator` feature. This pulls in a bundled [sdl2](https://github.com/Rust-SDL2/rust-sdl2) for opening windows. You will need cmake to compile it.

```sh
cargo run --example basic --features simulator,flexbox

cargo run --example power_monitor --features simulator,flexbox

# Showcase the supported flexbox alignment modes.
cargo run --example flexbox --features simulator,flexbox
```