Skip to content

cobowallet/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

Packages

No packages published

Languages

  • Dart 83.1%
  • Ruby 9.2%
  • Objective-C 3.5%
  • Java 1.9%
  • Swift 1.8%
  • Kotlin 0.5%