Is is possible to get an event when an item in the collection bound to a Xamarin Forms listview changes? For example my object has a Date field which is bound to a label in a ViewCell. I would like an event fired when the Date is changed. Our object implements INotifyPropertyChanged so the listview updates properly. I can manually subscribe to the OnPropertyChanged event of each item but I'm hoping their is an easier way.
Thanks.