Hi xamarin developers,
my horizontal scrollview doesnt scroll horizontally, here is code.
` StackLayout stack = new StackLayout {
Orientation = StackOrientation.Horizontal
};
for (int i = 0; i < 40; i++)
stack.Children.Add (new Label{ Text = "myrow " + i });
ScrollView scr = new ScrollView{
Orientation = ScrollOrientation.Horizontal,
HorizontalOptions=LayoutOptions.FillAndExpand,
Padding = new Thickness (0, Device.OnPlatform (20, 0, 0), 0, 0),
Content = stack
};
`
Any ideas?