Skip to content

Instantly share code, notes, and snippets.

@amay077
Last active August 29, 2015 14:02
Show Gist options
  • Select an option

  • Save amay077/cf0f4ca1aa14d54bac9a to your computer and use it in GitHub Desktop.

Select an option

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
Copy Markdown
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