Skip to content

Instantly share code, notes, and snippets.

@pedrogk
Last active August 29, 2015 14:21
Show Gist options
  • Save pedrogk/bc6e88139a371dfa039f to your computer and use it in GitHub Desktop.
Save pedrogk/bc6e88139a371dfa039f to your computer and use it in GitHub Desktop.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Xamarin.Forms;
namespace SG {
public class App {
public static Page GetMainPage() {
return new ContentPage {
Content = new Label {
Text = "Hello, Forms !",
VerticalOptions = LayoutOptions.CenterAndExpand,
HorizontalOptions = LayoutOptions.CenterAndExpand,
},
};
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment