### Run FadeShimmer Example with Flutter Source: https://github.com/quango2304/fade_shimmer/blob/master/example/README.md This snippet details the commands necessary to set up and run the FadeShimmer example application. It ensures all project dependencies are fetched and the application is compiled and launched on a target device or emulator. ```bash flutter pub get flutter run ``` -------------------------------- ### Install FadeShimmer Package Source: https://github.com/quango2304/fade_shimmer/blob/master/README.md This snippet shows how to add the fade_shimmer package to your Flutter project's pubspec.yaml file and install it. ```yaml dependencies: fade_shimmer: ^2.3.0 ``` ```bash flutter pub get ``` -------------------------------- ### Implement Staggered Shimmer Animation Source: https://github.com/quango2304/fade_shimmer/blob/master/README.md A Flutter example demonstrating a staggered animation effect using multiple FadeShimmer widgets with different `millisecondsDelay` values to create a wave-like loading pattern. ```dart Column( children: [ FadeShimmer( height: 8, width: 150, radius: 4, millisecondsDelay: 0, fadeTheme: FadeTheme.light, ), SizedBox(height: 8), FadeShimmer( height: 8, width: 170, radius: 4, millisecondsDelay: 300, // 300ms delay fadeTheme: FadeTheme.light, ), SizedBox(height: 8), FadeShimmer( height: 8, width: 120, radius: 4, millisecondsDelay: 600, // 600ms delay fadeTheme: FadeTheme.light, ), ], ) ``` -------------------------------- ### Create Rectangular Shimmer Effect Source: https://github.com/quango2304/fade_shimmer/blob/master/README.md A basic Flutter code example using FadeShimmer to create a rectangular shimmer effect with specified height, width, radius, and theme. ```dart FadeShimmer( height: 8, width: 150, radius: 4, fadeTheme: FadeTheme.light, ) ``` -------------------------------- ### Create Circular Shimmer Effect Source: https://github.com/quango2304/fade_shimmer/blob/master/README.md A Flutter code example for creating a circular shimmer effect using FadeShimmer.round, suitable for avatars or profile pictures, with a configurable size and theme. ```dart FadeShimmer.round( size: 60, fadeTheme: isDarkMode ? FadeTheme.dark : FadeTheme.light, ) ``` -------------------------------- ### Import FadeShimmer in Flutter Source: https://github.com/quango2304/fade_shimmer/blob/master/README.md This Dart snippet demonstrates how to import the FadeShimmer package into your Flutter application to use its widgets. ```dart import 'package:fade_shimmer/fade_shimmer.dart'; ``` -------------------------------- ### Customize Shimmer Colors Source: https://github.com/quango2304/fade_shimmer/blob/master/README.md This Dart snippet shows how to customize the shimmer effect by providing specific highlight and base colors for the FadeShimmer widget. ```dart FadeShimmer( height: 8, width: 150, radius: 4, highlightColor: Color(0xffF9F9FB), baseColor: Color(0xffE6E8EB), ) ``` -------------------------------- ### Globally Change Animation Duration Source: https://github.com/quango2304/fade_shimmer/blob/master/README.md This Dart snippet illustrates how to globally change the animation duration for all FadeShimmer widgets in an application by setting the `animationDurationInMillisecond` static property. ```dart // Change animation duration to 3 seconds (default is 1 second) FadeShimmer.animationDurationInMillisecond = 3000; ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.