FreshMvvm
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.
while clicking on backbutton pressed this occur in appcenter NavigationRenderer.OnPopViewAsync (Xamarin.Forms.Page page, System.Boolean animated) INavigationPageController.RemoveAsyncInner (Xamarin.Forms.Page page, System.Boolean animated, System.Boolean fast) NavigationPage.PopAsyncInner (System.Boolean animated, System.Boolean fast) NavigationPage.PopAsync (System.Boolean animated) PageModelCoreMethods.PopPageModel...
Is there a way to display a prompt using freshmvvm? I think the method is in v4.3 on xamarin forms https://docs.microsoft.com/en-us/xamarin/xamarin-forms/user-interface/pop-ups
I am wondering if this library will be compatible with XF 4 with Shell experience var welcomePage = FreshPageModelResolver.ResolvePageModel(); this error fired when I tried resolve viewModel Note I change...
Hello, I am novice and I am learning to do MasterDetail navigation. I figured I would learn from official sample app but when I open official solution in VS2019 i...
Hi, Im Not able to change the Menu icon color of FreshMasterDetailNavigationContainer and also the bar background color of detailed pages.
Hey, Not sure if I am missing something but I noticed version 4 has been released but I can't see any release notes. A version jump implies that something major...
Hi all, I am trying to set an empty back button title so that in iOS (PCL based Xamarin Forms FreshMVVM based app) the back button is only the "
here is the problem sample I push page in Modal mode `await CoreMethods.PushPageModel(mydata, true, true)` the same for pop page `await CoreMethods.PopPageModel(true, true); ` but its crash with that error...
Let's say we have `FirstPageModel` and `SecondPageModel` in the current page model navigation stack and we are on `ThirdPageModel`. Then if we call: ``` CoreMethods.RemoveFromNavigation(); await CoreMethods.PopPageModel(data); ``` the `FirstPage`...
Fixes issue 104: RemoveFromNavigation and then popping PageModel causes ReverseInit being called on removed FreshBasePageModel, instead of the one being popped.