I want hp (which is image) to be fixed in top position and rest of the children scrollable.
Content = new StackLayout {
BackgroundColor = Color.FromHex ("FFFFFF"),
Spacing = 30,
Padding = new Thickness (10, 40, 10, 10),
Children = {
hp,
new Label { Text = "Create Account", Font = Font.SystemFontOfSize(NamedSize.Large) },
new Label { Text = "Choose a Username" },
new Entry { Text = "" },
new Label { Text = "Password" },
new Entry { Text = "" },
new Label { Text = "Re-enter Password" },
new Entry { Text = "" },
button, cancel
}
};