question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

MVVM with Rg.Plugins.Popup

See original GitHub issue

Hi there, I am trying to migrate a project over to use FreshMVVM, i have been using the Rg.Plugins.Popup library,

I had found a solution to possibly able to use the FreshMVVM with the popup plugin:

public virtual Task PushPage(Xamarin.Forms.Page page, FreshBasePageModel model, bool modal = false, bool animate = true)
{
if (modal)
{
if (page is PopupPage)
{
return Navigation.PushPopupAsync(page as PopupPage, animate);
}
...
}
...
        return Navigation.PushAsync(page, animate);
    }

Has any one tried around to make these two plugins work together, or how I could alter the above to make work and how the integration might work… Sorry am new to FreshMVVM and like it much but just weighing up if this is the right fit for our future projects. I wasnt

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:7

github_iconTop GitHub Comments

1reaction
libin85commented, Feb 13, 2019

@LeoJHarris : I have created a extension library that does the trick. Have a look and let me know of any suggestions. https://github.com/libin85/FreshMvvm.Popup . I will soon make it as a nuget

1reaction
LeoJHarriscommented, Feb 13, 2019

The above works fine, whether the best solution im not sure but it does work.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Rg Popup In Xamarin.Forms Using Fresh MVVM
In this tutorial, we will learn how to use Rg.Plugin.Popup in Xamarin.Forms using Fresh MMVM.
Read more >
Invoking RG.Plugins.Popup from an MVVMCross ViewModel
In MVVMCross, you can navigate from a ViweModel by navigating to another ViewModel. Does anyone know how to accomplish that with RG.Plugins ......
Read more >
Use Popup with FreshMvvM Framework · Issue #27
Hi, I want to use Rg.Plugins.Popup Component with FreshMvvm framework. To trigger the popup page, you have mentioned to call the Rg.Plugins.
Read more >
libin85/FreshMvvm.Popup
This library adds extension methods to support Popup navigation for Rg.Plugin.Popup from PageModels in FreshMvvm framework. This libaray uses the original Rg.
Read more >
Using Rg.Plugins.Popup for Confirmation Popup before ...
Using Rg.Plugins.Popup for Confirmation Popup before deleting an item (MVVM). Hi everyone,. I want to add a CRUD functionality on my ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found