Skip to content

Instantly share code, notes, and snippets.

@alekseysidorov
Created February 3, 2016 11:24
Show Gist options
  • Save alekseysidorov/0f55d5914a949257a104 to your computer and use it in GitHub Desktop.
Save alekseysidorov/0f55d5914a949257a104 to your computer and use it in GitHub Desktop.
Merger
ListMerger {
target: window
property: "values"
values: [
"I am a child",
]
}
ListMerger {
target: window
property: "values"
values: [
"I am a grandchild",
]
}
Column {
anchors.centerIn: parent
spacing: 6
Repeater {
model: values
Label { text: modelData }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment