guillotine 0.4.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
13
14
15
16
17
## Examples

To run these examples, 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

# Draw an application-defined battery widget through the custom element API.
cargo run --example custom_element --features simulator

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