Skip to content

Latest commit

 

History

History
70 lines (48 loc) · 2.47 KB

readme.md

File metadata and controls

70 lines (48 loc) · 2.47 KB

ACR User Dialogs for Xamarin and Windows

A cross platform library that allows you to call for standard user dialogs from a shared/portable library. Supports Android, iOS, and Unified Windows Platform (UWP, UAP)

NuGet

Change Log - Jan 27, 2017

Features

Docs are a work in progress of Nov 1, 2016

Support Platforms

  • iOS 8+
  • Android
  • Universal Windows Platform (Win10/UWP)
  • Portable Class Libraries (Profile 259)

Experimental Platforms (no support)

  • tvOS
  • WPF/NET45
  • Windows Phone 8/8.1
  • MacOS - coming soon

Setup

To use, simply reference the nuget package in each of your platform projects.

iOS and Windows

Nothing is necessary any longer as of v4.x.  There is an Init function for iOS but it is OPTIONAL and only required if you want/need to control
the top level viewcontroller for things like iOS extensions.  Progress prompts will not use this factory function though!

Android Initialization (In your main activity)

UserDialogs.Init(this);
OR UserDialogs.Init(() => provide your own top level activity provider)
OR MvvmCross - UserDialogs.Init(() => Mvx.Resolve<IMvxAndroidCurrentTopActivity>().Activity)
OR Xamarin.Forms - UserDialogs.Init(() => (Activity)Forms.Context)

MvvmCross

// from your PCL app.cs (remember to Init on android platform project)
Mvx.RegisterSingleton<IUserDialogs>(() => UserDialogs.Instance);

Powered By: