Rodion
Rodion

Reputation: 350

Start scroll from bottom/right xamarin

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

Answers (1)

dylansturg
dylansturg

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

Related Questions