Features

A flutter package easy_shimmer is helps to add adaptive shimmer in any widget for Android and IOS.

Flutter Package Pub Points Popularity

device-2024-03-07-164828 device-2024-03-07-165746

Getting started

easy_shimmer is basically an improved shimmer, so you can just use as an extension to any flutter widget that you want.

Usage

   Column(
      children: [
        const Text('Easy shimmer with Text widget').easyShimmer(
          baseColor: Colors.white38,
          highlightColor: Colors.white70,
        ),
        const SizedBox(
          height: 40,
        ),
        const SizedBox(
          height: 200,
          width: 200,
        ).easyShimmer(
          baseColor: Colors.white38,
          highlightColor: Colors.white70,
        ),
        const SizedBox(
          height: 40,
        ),
      ],
    )

Libraries

easy_shimmer