Is there an easy way to hide the scrollbar in a ListView, but leave it scrollable?
You can create your own ListView renderers for each platform ( http://developer.xamarin.com/guides/cross-platform/xamarin-forms/custom-renderer/ ):
On Android:
ListView.VericalScrollbarEnabled = false;
In iOS:
UIScrollView.ShowsVerticalScrollIndicator = false;