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.
```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(); } ```
Best to start with these sources:
slint_orbclient
is available under MIT license.
Slint
is available under either a commercial license
or GNU GPLv3.