16 lines
381 B
Rust
16 lines
381 B
Rust
|
fn main() {
|
||
|
slint_build::compile("src/appwindow.slint").unwrap();
|
||
|
}
|
||
|
|
||
|
// fn main() {
|
||
|
// // let style = "fluent";
|
||
|
// let style = "material";
|
||
|
// slint_build::compile_with_config(
|
||
|
// "src/appwindow.slint",
|
||
|
// slint_build::CompilerConfiguration::new()
|
||
|
// .with_style(style.to_string())
|
||
|
// .into(),
|
||
|
// )
|
||
|
// .unwrap();
|
||
|
// }
|