HMPopup 1.0.25

There is a newer version of this package available.
See the version list below for details.
dotnet add package HMPopup --version 1.0.25
NuGet\Install-Package HMPopup -Version 1.0.25
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="HMPopup" Version="1.0.25" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add HMPopup --version 1.0.25
#r "nuget: HMPopup, 1.0.25"
#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 HMPopup as a Cake Addin
#addin nuget:?package=HMPopup&version=1.0.25

// Install HMPopup as a Cake Tool
#tool nuget:?package=HMPopup&version=1.0.25

PopupIcon

NuGet NuGet

HMPopup

Use this package to show popup window in your xamarin apps just like DisplayAlert
Android and iOS supported

Class structure

public class Popup : IPopup

Setup

  • HMPopup Available on NuGet: https://www.nuget.org/packages/HMPopup
  • Visual studio setup
    • Tools → NuGet Pckage Manager → Package Manager Console → Install-Package ShamsiDatePicker -Version 3.0.20

How to use

  • After setup the package use this line on Csharp file header:
using HMPopup;
  • Then build your popup object from Popup class:
readonly Popup popup = new Popup()
{
    OkTitle = "Ok",
    CancelTitle = "Cancel",
    NoTitle = "No",
    YesTitle = "Yes",
    SelectTitle = "Select",
    FlowDirection = FlowDirection.LeftToRight
};
  • Showing message:

await popup.ShowMessageAsync("Test Message", "This is a test message");
popup.ShowMessage("Test Message", "This is a test message");
  • Light Theme

Message-Light

  • Dark Theme

Message-Dark

  • Showing question:

var answer = await popup.ShowQuestionAsync("Test Question", "Are you sure?");
//answer is true if Yes selected and is false if No selected
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed.  monoandroid10.0 is compatible. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed.  xamarinios10 is compatible. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on HMPopup:

Package Downloads
HMControls

Include some usable controls for Xamarin Forms. https://instagram.com/hossein.mahabadi468

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.28 307 12/13/2022
1.0.25 868 8/27/2022

1. Mvvm and Component folders have been removed classes moved to root folder
2. Controls removed. use HMControls nuget package instead.
3. Popup removed. use HMPopup nuget package instead.