SVProgressHUD 2.2.5.3

dotnet add package SVProgressHUD --version 2.2.5.3
NuGet\Install-Package SVProgressHUD -Version 2.2.5.3
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="SVProgressHUD" Version="2.2.5.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SVProgressHUD --version 2.2.5.3
#r "nuget: SVProgressHUD, 2.2.5.3"
#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 SVProgressHUD as a Cake Addin
#addin nuget:?package=SVProgressHUD&version=2.2.5.3

// Install SVProgressHUD as a Cake Tool
#tool nuget:?package=SVProgressHUD&version=2.2.5.3

SVProgressHUD for Xamarin.iOS

NuGet version

SVProgressHUD is a clean and easy-to-use HUD meant to display the progress of an ongoing task on iOS and tvOS.

SVProgressHUD

Try SVProgressHUD on Appetize.io.

Xamarin.iOS Binding

Net 7.0 for iOS is supported

Nuget

Build

  • make
  • Output: build/SVProgressHUD.dll

Publish new version to Nuget

  • Edit file MakefileNATIVE_RELEASE to the latest version of native ObjC library
  • Update file SVProgressHUD.nuspecversion to new version (Nuget version), usually the same as native version
  • make : Load the ObjC source code and build the dll of binding library
  • make nuget : Run nuget commandline to push new version
  • make clean-all : Clean all build files

Sample Code

using System;
using SVProgressHUDBinding;
using UIKit;

namespace DemoHUD
{
	public partial class ViewController : UIViewController
	{
		protected ViewController(IntPtr handle) : base(handle)
		{
			// Note: this .ctor should not contain any initialization logic.
		}

		partial void BtnToggle_TouchUpInside(UIButton sender)
		{
			if (!SVProgressHUD.IsVisible)
			{
				//Show loading indicator
				SVProgressHUD.Show();
			}	else
			{
				//Hide loading indicator
				SVProgressHUD.Dismiss();
			}
		}
	}
}
Product Compatible and additional computed target framework versions.
.NET net7.0-ios16.1 is compatible.  net8.0-ios was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net7.0-ios16.1

    • No dependencies.

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
2.2.5.3 215 9/25/2023
2.2.5.2 112 9/24/2023
2.2.5 78,490 6/25/2018
2.2.2 23,389 10/15/2017
2.2.1 896 10/14/2017
2.1.2 6,597 2/4/2017
2.1.0 1,597 12/5/2016
2.0.3 4,683 4/28/2016
2.0.2 1,014 4/4/2016
2.0.0 989 3/26/2016

SVProgressHUD binding for Net 7.0 iOS