mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-04 15:59:08 -04:00
Support GtkBuilderListItemFactory syntax by decompiling the nested XML, rather than preserving it as a string literal.
11 lines
203 B
Text
11 lines
203 B
Text
using Gtk 4.0;
|
|
|
|
ListView {
|
|
factory: BuilderListItemFactory list_item_factory {
|
|
template ListItem {
|
|
child: Label {
|
|
label: bind template.item as <$MyObject>.name;
|
|
};
|
|
}
|
|
};
|
|
}
|