Skip to content

Instantly share code, notes, and snippets.

@Artgerto
Created January 14, 2018 11:16
Vertical stack layout
var layout = new StackLayour {
Orientation = StackOrientation.Vertical
};
layout.Children.Add(new Label { Text = "Enter your name:"});
layout.Children.Add(new Entry());
layout.Children.Add(new Button { Text = "ОК"} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment