Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@juucustodio
Created July 27, 2019 17:42
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 juucustodio/0f5561bbc65cb6c6bcf73f9d52b890af to your computer and use it in GitHub Desktop.
Save juucustodio/0f5561bbc65cb6c6bcf73f9d52b890af to your computer and use it in GitHub Desktop.
Example of how to work with MVVM pattern using the MVVMCoffee nuget package - http://julianocustodio.com/mvvmcoffee
using Xamarin.Forms;
namespace Sample
{
public partial class App : Application
{
public App()
{
InitializeComponent();
MainPage = new NavigationPage(new MainPage());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment