MD.Acr.UserDialogs 6.2.4-pre1

This is a prerelease version of MD.Acr.UserDialogs.
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package MD.Acr.UserDialogs --version 6.2.4-pre1
NuGet\Install-Package MD.Acr.UserDialogs -Version 6.2.4-pre1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="MD.Acr.UserDialogs" Version="6.2.4-pre1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MD.Acr.UserDialogs --version 6.2.4-pre1
#r "nuget: MD.Acr.UserDialogs, 6.2.4-pre1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install MD.Acr.UserDialogs as a Cake Addin
#addin nuget:?package=MD.Acr.UserDialogs&version=6.2.4-pre1&prerelease

// Install MD.Acr.UserDialogs as a Cake Tool
#tool nuget:?package=MD.Acr.UserDialogs&version=6.2.4-pre1&prerelease

This is a fork of ACR User Dialogs Plugin for Xamarin (Windows is removed), that starts to include top/bottom location setting for toasts.
Please use https://github.com/aritchie/userdialogs otherwise.

Allows for messagebox style dialogs to be called from your shared/PCL/MVVM code
- Action Sheet (multiple choice menu)
- Alert
- Confirm
- Date
- Loading
- Login
- Progress
- Prompt
- Toast (Snackbars)
- Time

On android, be sure to call UserDialogs.Init() before using!

Supported Platforms
- iOS 7+
- Android

Product Compatible and additional computed target framework versions.
MonoAndroid monoandroid10 is compatible. 
Xamarin.iOS xamarinios10 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated

6.2.4-pre1
[feature] Started adding location config option (top/bottom) to Toast notifications

6.2.3
[fix][droid] NRE on fallback toast click (when not in use)
[fix][uwp] deterministic progress dialog min and max set properly

6.2.2
[fix][uwp] progress indicator was not bound properly

6.2.1
[fix][ios] NRE on maxlength prompt
[fix][uwp] NRE on progress
[fix][uwp] NRE on prompt placeholder
[fix][uwp] prompt no longer requires Message property be set in the config

6.2.0
[feature] maxlength for prompt dialog
[feature] showloading can be called even when stoploading was not called
[feature] onaction/async cannot be set together.  plugin will now throw error
[feature][droid] actionsheet is now dismissable by touching outside of the dialog
[fix][droid] date/time dialogs should not show keyboard
[fix][ios] alert dialogs and toasts all marshall back to main thread now
[fix][ios] time dialog is not using selected time
[fix][uwp] progress dialog showing percent even when indeterministic
[fix][uwp] fix toast from background thread

6.1.2
[fix][droid] prompt dialog with numeric restriction was not allowing input

6.1.0
[BREAKING] all config objects now use a consistent naming for OnEvent called OnAction instead of OnOk, OnConfirm, OnEtc
[BREAKING] progress dialog interface has changed ever so slightly
[BREAKING] winphone 8 has been removed from the nuget package - it still exists on github!
[feature][ios] Add optional Init function to allow for top viewcontroller control similar to android top activity - this is good for extensions apparently (Thanks to Kyle Spearrin)
[fix][ios] showerror/success images not being displayed
[fix][ios] date/time dialogs no longer show a solid black background
[fix][droid] snackbar font color works now
[fix][droid] nre on unassigned toast action
[fix][droid] back button does cancels dialogs if dialog is cancellable
[fix][droid] prompt dialog now uses enter as ok click
[fix][uwp] show error/success now uses toasts
[feature] ShowLoading will now close previous instances that were not closed (stupid proofing)
[feature] add SelectedDate parameter to DatePromptAsync
[feature] add SelectedTime parameter to TimePromptAsync

6.0.1
[fix][ios] date/time picker not returning proper value

6.0
This is a new version due to breaking changes

[BREAKING][feature][ios] New snackbar for old toast setup that everyone complained about (thanks to Marc Bruins - https://github.com/MarcBruins)
[feature][ios] Better looking date/time picker (thanks to Marc Bruins - https://github.com/MarcBruins)
[feature] Toasts are also dismissable from code now (via disposable)
[feature][droid] Make actionsheets look like bottomsheets from the design library - Set ActionSheetConfig.UseBottomSheet = true
[feature][droid] Ability to set style on alert based dialogs using AndroidStyleId
[fix][ios] destruction button should be at the top on iOS actionsheets
[fix][droid] fixes for fragment dialogs
[fix][droid] classic (non-appcompat) dialogs would not always appear from background threads