Skip to content

Instantly share code, notes, and snippets.

@Artgerto
Created January 14, 2018 11:43
var stack = new StackLayout();
var label = new Label {...};
var button = new Button {...};
var box = new BoxView {...};
stack.AddChildren.Add(label);
stack.AddChildren.Add(button);
stack.AddChildren.Add(box);
...
var scroll = new ScrollView { Content = stack };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment