This repository has been archived on 2025-03-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
AIT/src/main.rs
doryan 45617aa59d fix(id): rename application id
Application id has been renamed from "com.github.gtk-rs.examples.basic"
to "com.laboratory-work"
2024-08-09 17:36:16 +04:00

21 lines
321 B
Rust

use gtk4 as gtk;
use gtk::prelude::*;
mod controller;
mod model;
mod view;
use controller::*;
use view::ui::*;
#[tokio::main]
async fn main() {
let app: adw::Application = adw::Application::builder()
.application_id("com.laboratory-work")
.build();
app.connect_activate(ui);
app.run();
}