mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
Basically just a copy of the list_factory test, but with an extra copy of the list factory inside it.
17 lines
387 B
Text
17 lines
387 B
Text
using Gtk 4.0;
|
|
|
|
Gtk.ListView {
|
|
factory: Gtk.BuilderListItemFactory list_item_factory {
|
|
template ListItem {
|
|
child: Gtk.ListView {
|
|
factory: Gtk.BuilderListItemFactory list_item_factory {
|
|
template ListItem {
|
|
child: Gtk.Label {
|
|
label: bind template.item as <$MyObject>.name;
|
|
};
|
|
}
|
|
};
|
|
};
|
|
}
|
|
};
|
|
}
|