Reputation: 350
Is it possible in xamarin ScrollView to start no from standard top or left, but from bottom or right?
<ScrollView x:Name="scroll" Orientation="Horizontal">
</ScrollView>
Upvotes: 0
Views: 582
Reputation: 1708
I think that ScrollToAsync(double x, double y, bool animated)
should do the trick for you. Whenever your view first appears, use that to set the scroll view to whatever position you want. Then the user will start scrolling from there.
Upvotes: 1