Add basic slint app

This commit is contained in:
2025-12-14 19:09:13 +01:00
parent 4860851dba
commit e965518284
7 changed files with 6174 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
// Prevent console window in addition to Slint window in Windows release builds when, e.g., starting the app via file manager. Ignored on other platforms.
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
use std::error::Error;
slint::include_modules!();
fn main() -> Result<(), Box<dyn Error>> {
let ui = App::new()?;
ui.run()?;
Ok(())
}