Skip to content

Instantly share code, notes, and snippets.

@gavr123456789
Created February 7, 2021 13:39
Show Gist options
  • Save gavr123456789/d149e709b53913576f2a462f5948528f to your computer and use it in GitHub Desktop.
Save gavr123456789/d149e709b53913576f2a462f5948528f to your computer and use it in GitHub Desktop.
Vala GTK 4 minimal example
int main (string[] args) {
var app = new Gtk.Application ("com.example.GtkApplication", ApplicationFlags.FLAGS_NONE);
app.activate.connect (() => {
var win = new Gtk.ApplicationWindow (app);
win.present ();
});
return app.run (args);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment