Xamarin Forms: hiding scrollbar in ListView

Is there an easy way to hide the scrollbar in a ListView, but leave it scrollable?

+4
source share
1 answer

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; 
+9
source

All Articles