Skip to content

This library adds Popup navigation for Rg.Plugin.Popup to FreshMvvm framework

License

Notifications You must be signed in to change notification settings

libin85/FreshMvvm.Popup

Repository files navigation

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.Plugins.Popup and requies you to do all the necessary initalisations to work.

Setup

  1. Reference the library in your Xamarin.Forms project.
  2. Install Rg.Plugins.Popup in all the client projects.
  3. Init the Rg.Plugins.Popup library in client projects.

Android

namespace HelloXamarinFormsWorld.Android
{
    [Activity(Label = "HelloXamarinFormsWorld", MainLauncher = true,
    ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation)]
    public class MainActivity : global::Xamarin.Forms.Platform.Android.FormsApplicationActivity
    { 
        protected override void OnCreate(Bundle bundle)
        {
          base.OnCreate(bundle);
          Rg.Plugins.Popup.Popup.Init(this, bundle);
          Xamarin.Forms.Forms.Init(this, bundle);
          LoadApplication (new App ());
        }
    }
}

iOS

[Register("AppDelegate")]
public partial class AppDelegate : global::Xamarin.Forms.Platform.iOS.FormsApplicationDelegate
{
    public override bool FinishedLaunching(UIApplication app, NSDictionary options)
    {
       Rg.Plugins.Popup.Popup.Init();
       global::Xamarin.Forms.Forms.Init ();
       LoadApplication (new App ());
       return base.FinishedLaunching (app, options);
    }
}

Windows

Rg.Plugins.Popup.Popup.Init();
Xamarin.Forms.Forms.Init(e, Rg.Plugins.Popup.Popup.GetExtraAssemblies());

if (e.PreviousExecutionState == ApplicationExecutionState.Terminated)
{
    ...
}

To Use

Add a using statement : using FreshMvvm.Popups

To push a popuppage : CoreMethods.PushPopupPageModel<SamplePopupPageModel>();

To pop the page: await CoreMethods.PopPopupPageModel();

To pop all pages: await CoreMethods.PopAllPopups();

Credits

Michael Ridland for FreshMvvm framework

Kirill Lyubimov for Rg.Plugins.Popup

About

This library adds Popup navigation for Rg.Plugin.Popup to FreshMvvm framework

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages