Crates.io | slint_orbclient |
lib.rs | slint_orbclient |
version | 0.1.0 |
source | src |
created_at | 2022-12-04 16:13:09.881378 |
updated_at | 2022-12-04 16:13:09.881378 |
description | Slint platform support for Redox |
homepage | |
repository | https://gitlab.redox-os.org/redox-os/slint_orbclient |
max_upload_size | |
id | 729649 |
size | 28,159 |
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.
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();
}
Best to start with these sources:
slint_orbclient
is available under MIT license.Slint
is available under either a commercial license
or GNU GPLv3.