I recently updated my computer to have Visual Studio 2015 Update 2 and the anniversary sdk ctp for windows 10. I noticed I no longer was seeing any packages when I tried to add a nuget package. It turns out the url which goes at the top of the package locations was missing. Once I added it back everything worked fine.
Wednesday, April 6, 2016
Sunday, April 3, 2016
FreshMVVM getting started the missing step
I have been playing around with FreshMVVM and found I like it a lot. It is very light weight and fairly easy to use.
There is one thing missing from the FreshMVVM quick start that I felt should blog about. You need to put everything in a fresh navigation container if you want the pages and page models to resolve and of course be able to navigate.
http://www.michaelridland.com/xamarin/freshmvvm-quick-start-guide/
In the app class this is how you need to set MainPage to an instance to show the first page.
There is one thing missing from the FreshMVVM quick start that I felt should blog about. You need to put everything in a fresh navigation container if you want the pages and page models to resolve and of course be able to navigate.
http://www.michaelridland.com/xamarin/freshmvvm-quick-start-guide/
In the app class this is how you need to set MainPage to an instance to show the first page.
public App()
{
// The root page of your application
var homePage = FreshMvvm.FreshPageModelResolver.ResolvePageModel<HomePageModel>();
var navConatiner = new FreshMvvm.FreshNavigationContainer(homePage);
MainPage = navConatiner;
}
Subscribe to:
Posts (Atom)
-
If you are having problems getting your hyper-v emulators to run here are the steps I recommend to fix them First and this usually fixes t...
-
If you have the Anniversary update windows 10 pro or greater you can enable long file names in group policy. Search for group policy edit...
-
I find that sometime when I am debugging a Xamarin Forms apps on a windows 10 machine the android apps do not show the latest updates in the...