Skip to content

Instantly share code, notes, and snippets.

@nuitsjp
Created August 11, 2016 09:45
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 nuitsjp/5118df676d7146aa1e553a6e7785d64a to your computer and use it in GitHub Desktop.
Save nuitsjp/5118df676d7146aa1e553a6e7785d64a to your computer and use it in GitHub Desktop.
Hello, Prism. App.cs
public class App : Application
{
public App()
{
MainPage = new ContentPage
{
Content = new StackLayout
{
VerticalOptions = LayoutOptions.Center,
Children = {
new Label {
HorizontalTextAlignment = TextAlignment.Center,
Text = "Welcome to Xamarin Forms!"
}
}
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment