FreshMvvm icon indicating copy to clipboard operation
FreshMvvm copied to clipboard

FreshMvvm is a super light Mvvm Framework designed specifically for Xamarin.Forms. It's designed to be Easy, Simple and Flexible.

Results 103 FreshMvvm issues
Sort by recently updated
recently updated
newest added

Any idea when the latest branch will be pushed out to the nuget server? I am waiting on some of the .net standard stuff.

I have updated all nuget references and included the latest Xamarin.Forms that has a netstandard target. To allow the project to build correctly for netstandard and use the inbuilt nuget...

Hi, Is it planned to create a Visual Studio template (vsix), that intergates a FreshMvvm solution and item page/pagemodel? Thanks

The readme states [here](https://github.com/rid00z/FreshMvvm#ioc-container-lifetime-registration-options) that I can call something like `FreshIOC.Container.Register();` however there is no Register method that takes zero arguments. Was this removed from the IOC container? How can...

In this method I want to call to an asynchronous method to retrieve some data from server, but I see that this method is a **void**. So, what is the...

Hi, this function seems that it doesnt work anymore with the newest release ` await CoreMethods.SwitchSelectedMaster(); ` I have just double checked and it works fine in 2.2.0 2.2.2 is...

I am developing test project using FreshMvvm, SQLite to displaying lists of Students. But Xamarin.Forms Previewer window not working with it. **XAML file which not showing up in previewer** ```...

Hi all, Is there any way to call PageModel's init method after SwitchOutRootNavigation? Because we want to load data after a user logged, Actually init method is called when we...

Hi, I am interested on how to write Unit Test with Application that built using FresshMvvm. Would be usefuly if you can provide a full sample of a Test Project...

Hi Why this works: var navigService = FreshIOC.Container.Resolve(NavigationContainerNames.MainContainer); Page page = FreshPageModelResolver.ResolvePageModel(menuItem.PageModelType,null); await navigService.PushPage(page,page.GetModel(),false,true); but this does not: `await CoreMethods.PushPageModel(menuItem.PageModelType);` in my PageModel? P.S. I use custom navigation class that...