slint_orbclient

Slint platform support based on OrbClient. Can be used to run a Slint application on Redox. Originally located on https://codeberg.org/flovansl/co_sl.

MIT licensed

Example

```rust slint::slint!{ HelloWorld := Window { Text { text: "hello world"; color: green; } } }

fn main() { slintorbclient::initconfig(slint_orbclient::Config::default().width(600).height(400).title("Hello")); HelloWorld::new().run(); } ```

How to run your app on Redox

new to slint?

Best to start with these sources:

license