Reputation: 632
Is there an easy way to hide the scrollbar in a ListView, but still leave it scrollable?
Upvotes: 4
Views: 6108
Reputation: 682
You just need to provide VerticalScrollBarVisibility="Never" in your xaml.
<ListView x:Name="lst" VerticalScrollBarVisibility="Never">
</ListView>
Upvotes: 2
Reputation: 7454
You can make a custom ListView renderers for each platform (http://developer.xamarin.com/guides/cross-platform/xamarin-forms/custom-renderer/):
On Android:
ListView.VericalScrollbarEnabled = false;
On iOS:
UIScrollView.ShowsVerticalScrollIndicator = false;
Upvotes: 9