Shimmer.NET 1.1.1

dotnet add package Shimmer.NET --version 1.1.1
                    
NuGet\Install-Package Shimmer.NET -Version 1.1.1
                    
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="Shimmer.NET" Version="1.1.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Shimmer.NET" Version="1.1.1" />
                    
Directory.Packages.props
<PackageReference Include="Shimmer.NET" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Shimmer.NET --version 1.1.1
                    
#r "nuget: Shimmer.NET, 1.1.1"
                    
#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.
#:package Shimmer.NET@1.1.1
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Shimmer.NET&version=1.1.1
                    
Install as a Cake Addin
#tool nuget:?package=Shimmer.NET&version=1.1.1
                    
Install as a Cake Tool

Shimmer.NET 💎

High-Performance, Content-Aware Shimmer for .NET Android

Shimmer.NET Icon

Shimmer.NET is a 100% C# native Android library that brings premium loading indicators to your .NET applications. Say goodbye to heavy Java/Kotlin bindings and hello to a sleek, modern, and high-performance skeleton loading experience.

✨ Key Features

  • 🛡️ PorterDuff Masking: Professional content-aware shimmering. The effect only highlights your text and shapes, not the background.
  • 🔄 Perfectly Synchronized: The ShimmerGroup container allows multiple independent shimmers to sweep in unison.
  • 🚥 Automated State Management: Built-in Loading, Content, and Error states with smooth cross-fade transitions.
  • 🏗️ Effortless Presets: Instant, code-behind skeleton generation for common UI patterns (Profile, Post, List).
  • 🚀 Ultra-Fast Rendering: Hardware-accelerated drawing with optimized ValueAnimator management.
  • 🎨 Infinite Customization: Directional control (4 directions), shapes (Linear/Radial), repeat delays, and custom interpolators.

📦 Installation


<PackageReference Include="Shimmer.NET" Version="1.1.0" />

🚀 Quick Usage

Basic XML Configuration

<shimmer.net.widgets.ShimmerFrameLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    app:shimmer_is_loading="true"
    app:shimmer_use_mask="true">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">
        <View android:layout_width="match_parent" android:layout_height="20dp" android:background="#DDD" />
        <View android:layout_width="200dp" android:layout_height="16dp" android:background="#DDD" />
    </LinearLayout>

</shimmer.net.widgets.ShimmerFrameLayout>

Synchronized Sweeping

Place multiple shimmers inside a ShimmerGroup for a perfectly unified loading experience:

<shimmer.net.widgets.ShimmerGroup
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">
    
    <shimmer.net.widgets.ShimmerFrameLayout ...>...</shimmer.net.widgets.ShimmerFrameLayout>
    <shimmer.net.widgets.ShimmerFrameLayout ...>...</shimmer.net.widgets.ShimmerFrameLayout>
    
</shimmer.net.widgets.ShimmerGroup>

Instant Code Presets

// Effortless skeleton injection
var profileLoadingView = ShimmerPresets.CreateProfile(this);
parentLayout.AddView(profileLoadingView);

📜 License

Shimmer.NET is released under the MIT License.


Built with ❤️ by NkkinSoft for the .NET Android ecosystem.

Product Compatible and additional computed target framework versions.
.NET net9.0-android35.0 is compatible.  net10.0-android was computed.  net10.0-android36.0 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.1.1 110 3/26/2026
1.1.0 101 3/26/2026