Skip to content

Instantly share code, notes, and snippets.

@amay077
Last active August 29, 2015 14:02
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 amay077/cf0f4ca1aa14d54bac9a to your computer and use it in GitHub Desktop.
Save amay077/cf0f4ca1aa14d54bac9a to your computer and use it in GitHub Desktop.
using System;
using Xamarin.Forms;
namespace SpacingTest
{
public class App
{
public static Page GetMainPage()
{
return new ContentPage
{
Content = new StackLayout
{
Children =
{
new Label
{
Text = String.Empty,
Font = Font.SystemFontOfSize(50),
VerticalOptions = LayoutOptions.Start,
},
new Label
{
Text = "Label2",
Font = Font.SystemFontOfSize(50),
VerticalOptions = LayoutOptions.Start,
},
}
},
};
}
}
}
@amay077
Copy link
Author

amay077 commented Jun 11, 2014

Android

Android

iOS

iOS

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment