blueprint-compiler/tests/samples/list_item_factory.blp
2022-07-23 15:10:28 -05:00

9 lines
No EOL
139 B
Text

using Gtk 4.0;
ListView {
factory: list_item_factory(CheckButton) {
child: Label {
label: bind item.group.label;
};
};
}