Skip to content

Instantly share code, notes, and snippets.

@rid00z
Created June 18, 2014 02:18
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 rid00z/77b64d8cbce333652f6c to your computer and use it in GitHub Desktop.
Save rid00z/77b64d8cbce333652f6c to your computer and use it in GitHub Desktop.
Sample MvvmPage
public class QuotePage : ContentPage
{
//automatically populated when pushed
public QuotePageModel PageModel { get; set; }
public QuotePage ()
{
}
//automatically executed when pushed
public void Init()
{
Title = "Quote";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment