Skip to content

Instantly share code, notes, and snippets.

@marco-piccolino
Created September 22, 2017 14:15
Show Gist options
  • Save marco-piccolino/8a58814e9af24d46e574970382617dc9 to your computer and use it in GitHub Desktop.
Save marco-piccolino/8a58814e9af24d46e574970382617dc9 to your computer and use it in GitHub Desktop.
ListView {
id: groceriesListView
signal itemRemoved(string itemType)
delegate: Item {
Button {
onClicked: groceriesListView.itemRemoved(modelData.type)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment