See Also: ScrollView Members
The following example shows the creation of a ScrollView with a large Xamarin.Forms.StackLayout in it.
C# Example
StackLayout stack;
var scrollview = new ScrollView {
Content = new StackLayout {
Padding = new Thickness (20),
},
};
for (var i=0; i<100; i++)
stack.Children.Add (new Button { Text = "Foo"});

The Xamarin.Forms.ScrollView class has the following XAML properties:
| Property | Value |
|---|---|
| Content | Markup that specifies a Xamarin.Forms.View to display in the Xamarin.Forms.ScrollView. |
| Orientation | Horizontal or Vertical, to indicate the scroll direction. |