1 unstable release

0.1.0 Dec 4, 2022

#1068 in GUI

MIT and GPL-3.0-only…

29KB
632 lines

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

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

fn main() {
    slint_orbclient::init_config(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

Dependencies

~11–21MB
~299K SLoC