Reputation: 51
I am very beginner in Xamarin. I am creating an application which will support all three major platform UWP, Android, iOS. I want to show HorizonralScrollBar Indicator always in my application. Thanks in advance for your help.
Upvotes: 3
Views: 3980
Reputation: 51
In your xml, set VerticalScrollBarVisibility to "Always".
<ScrollView VerticalScrollBarVisibility="Always"></ScrollView>
Upvotes: 4