Xamarin.Facebook.Shimmer 1.0.2

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

// Install Xamarin.Facebook.Shimmer as a Cake Tool
#tool nuget:?package=Xamarin.Facebook.Shimmer&version=1.0.2

Xamarin.Facebook.Shimmer

NuGet Badge

This is a set of Xamarin bindings of Facebook Shimmer for iOS and Android

Shimmer is an easy way to add a shimmering effect to any view in your app. It's useful as an unobtrusive loading indicator.

Shimmer

Table of Contents

Installation

The latest stable release of the AffirmSDK is available on NuGet.

Example

A demo app that integrates Affirm is included in the repo. You may clone the GitHub repository into a new Visual Studio project folder and run the Examples project.

Facebook Shimmer Android

Usage Overview

The following snippet shows how you can use ShimmerFrameLayout

<com.facebook.shimmer.ShimmerFrameLayout
     android:id="@+id/shimmer_view_container"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content">

     ...(your complex view here)...

</com.facebook.shimmer.ShimmerFrameLayout>

And thats it! If you specify auto-start to be false, then you can start the animation in code:

ShimmerFrameLayout container = FindViewById<ShimmerFrameLayout>(R.id.shimmer_view_container);
container.StartShimmer(); // If auto-start is set to false

Facebook Shimmer iOS

Usage Overview

To use Shimmer, create a FBShimmeringView or FBShimmeringLayer and add your content. To start shimmering, set the Shimmering property to true.

An example of making a label shimmer:

FBShimmeringView shimmeringView = new FBShimmeringView(this.View.Bounds);
this.View.AddSubview(shimmeringView);

UILabel loadingLabel = new UILabel(shimmeringView.Bounds);
loadingLabel.TextAlignment = UITextAlignment.Center;
loadingLabel.Text = @"Shimmer";
shimmeringView.ContentView = loadingLabel;

// Start shimmering.
shimmeringView.Shimmering = true;

There's also an example project. In the example, you can swipe horizontally and vertically to try various shimmering parameters, or tap to start or stop shimmering.

Product Compatible and additional computed target framework versions.
MonoAndroid monoandroid11.0 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
1.0.2 12,787 8/4/2022
1.0.1 14,189 10/13/2019
1.0.0 209,473 4/4/2019

Support AndroidX packages:
[iOS] Xamarin.Facebook.Shimmer 1.0.2
[Android] Xamarin.Facebook.Shimmer 0.5.0