Skip to content

Instantly share code, notes, and snippets.

@benlau
Created January 1, 2016 09:11
Show Gist options
  • Save benlau/77668377d491679b0055 to your computer and use it in GitHub Desktop.
Save benlau/77668377d491679b0055 to your computer and use it in GitHub Desktop.
ListView {
id: listView
signal removeClicked(int index);
delegate: YourItem {
onRemoveClicked: listView.removeClicked(model.index);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment