Skip to content

Instantly share code, notes, and snippets.

@ionoy
Created March 27, 2018 14:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ionoy/6d1894b88fb0f85381e3db4df207568f to your computer and use it in GitHub Desktop.
Save ionoy/6d1894b88fb0f85381e3db4df207568f to your computer and use it in GitHub Desktop.
public class CodedUiTest : ContentView
{
public CodedUiTest ()
{
InitializeContentLive();
}
public void InitializeContentLive()
{
var grid = new Grid();
grid.AnchorX = 10;
Content = new StackLayout {
Children = {
new Label { Text = "Welcome to Xamarin.Forms!" }
}
};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment