blueprint-compiler/tests/samples/list_factory.blp
James Westman 60f9173421 Add type to BuilderListItemFactory extension
Makes it a little clearer how it works.
2023-05-13 16:49:48 -05:00

11 lines
No EOL
211 B
Text

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