blueprint-compiler/tests/samples/list_factory.blp
2023-04-08 01:34:47 +00:00

11 lines
No EOL
202 B
Text

using Gtk 4.0;
Gtk.ListView {
factory: Gtk.BuilderListItemFactory list_item_factory {
template {
child: Label {
label: "Hello";
};
}
};
}