Basically I've removed the IncrementalTableViewSource.CreateBinding() so we can easily migrate the code from any MvxTableViewSource to IncrementalTableViewSource.
Developers will have to set the binding like they always do when using any other MvxTableViewSource subclass.
eg. this.CreateBinding(source).To(vm => vm.Numbers).Apply();
Both the iOS and Android implementations are similar and both are overriding ItemsSource property to reset the _lastViewedPosition.
Basically I've removed the IncrementalTableViewSource.CreateBinding() so we can easily migrate the code from any MvxTableViewSource to IncrementalTableViewSource. Developers will have to set the binding like they always do when using any other MvxTableViewSource subclass. eg. this.CreateBinding(source).To(vm => vm.Numbers).Apply();
Both the iOS and Android implementations are similar and both are overriding ItemsSource property to reset the _lastViewedPosition.
I also improved the .gitignore