Skip to content

A package provides an easy way to add shimmer effect in Flutter project

License

Notifications You must be signed in to change notification settings

presence-app/flutter_shimmer

 
 

Repository files navigation

Shimmer

pub package

A package provides an easy way to add shimmer effect in Flutter project

How to use

import 'package:shimmer/shimmer.dart';
SizedBox(
  width: 200.0,
  height: 100.0,
  child: Shimmer.fromColors(
    baseColor: Colors.red,
    highlightColor: Colors.yellow,
    child: Text(
      'Shimmer',
      textAlign: TextAlign.center,
      style: TextStyle(
        fontSize: 40.0,
        fontWeight:
        FontWeight.bold,
      ),
    ),
  ),
);

About

A package provides an easy way to add shimmer effect in Flutter project

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 33.0%
  • Dart 32.1%
  • CMake 27.3%
  • HTML 2.7%
  • Swift 2.5%
  • C 2.1%
  • Other 0.3%