Skip to content

Instantly share code, notes, and snippets.

View peterholzer's full-sized avatar

Peter Holzer peterholzer

  • Vienna, Austria
View GitHub Profile
@peterholzer
peterholzer / GtkListViewExample.vala
Last active January 30, 2022 20:21
Gtk.ListView with Vala and GTK4
// This example shows how to use the new Gtk.ListView in GTK4.
// Example object, wraps a string inside a GObject
class MyObject : Object {
public string s;
public MyObject(string s) {
this.s = s;
}
}