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.
18 lines
368 B
Text
18 lines
368 B
Text
using Gtk 4.0;
|
|
|
|
ListView {
|
|
factory: BuilderListItemFactory list_item_factory {
|
|
template ListItem {
|
|
child: ListView {
|
|
factory: BuilderListItemFactory list_item_factory {
|
|
template ListItem {
|
|
child: Label {
|
|
label: bind template.item as <$MyObject>.name;
|
|
};
|
|
}
|
|
};
|
|
};
|
|
}
|
|
};
|
|
}
|
|
|