This repository has been archived on 2025-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
|
use gtk4 as gtk;
|
|
|
|
use gtk::prelude::*;
|
|
|
|
mod controller;
|
|
mod model;
|
|
mod view;
|
|
|
|
use controller::*;
|
|
use view::view::*;
|
|
|
|
fn main() {
|
|
let app = adw::Application::builder()
|
|
.application_id("com.github.gtk-rs.examples.basic")
|
|
.build();
|
|
|
|
app.connect_activate(ui);
|
|
app.run();
|
|
}
|