FreshMvvm icon indicating copy to clipboard operation
FreshMvvm copied to clipboard

ICoreMethodsPageModel Action data PushPageModel no visible

Open thiagoparabas opened this issue 5 years ago • 2 comments

Hi, Guys @rid00z @libin85

The Interface ICoreMethodsPageModel not insering the pushmodel below.

await CoreMethods.PushPageModel<QuotePageModel> (pm => pm.Quote = "Quote 23")

thiagoparabas avatar Jul 19 '19 14:07 thiagoparabas

This isn't in the Nuget package as of yet from my understanding. The sample used shows a feature that was merged in to the master but yet put in the main build. The commit this was put in is #256 and the alter of example was #278 . Use the method that takes in an object instead if using the Nuget package until the build is live:

await CoreMethods.PushPageModel<QuotePageModel>(pm.Quote);

DevonHansen avatar Jul 29 '19 07:07 DevonHansen

@thiagoparabas : The was added after the nuget was released as @DevonHansen said. Hoping to release a new release soon.

libin85 avatar Sep 10 '19 04:09 libin85