WIP: List item factory syntax

This commit is contained in:
James Westman 2022-07-18 16:37:15 -05:00
parent 3416546eac
commit fdf91dc08e
No known key found for this signature in database
GPG key ID: CE2DBA0ADB654EA6
10 changed files with 145 additions and 9 deletions

View file

@ -0,0 +1,9 @@
using Gtk 4.0;
ListView {
factory: list_item_factory(CheckButton) {
child: Label {
label: bind item.group.label;
};
};
}