preface

Flutter is Google’s open source application development framework that builds apps for Android, iOS, Windows, Linux and other platforms using just one set of code. Flutter has very high performance with a refresh rate of 120fps and is currently a very popular cross-platform UI development framework.

This column has collected nearly 70 great open source libraries on Github and will continue to be updated. I hope this can help you improve the efficiency of brick moving and wish the ecology of Flutter better and better 🎉🎉.

The body of the

The wheel is introduced

  • Name: Shimmer
  • Overview: flash effect, loading page, skeleton screen flash screen effect.
  • The author:[email protected]
  • Warehouse Address:flutter_shimmer
  • Recommended index: ⭐️⭐️ disk ⭐ password
  • Common indexes are as follows: ⭐️⭐️ disk ⭐ ⭐
  • Effect preview:

⚙️ Installation and use

dependencies:
  shimmer: ^2.0. 0
Copy the code
import 'package:shimmer/shimmer.dart';
Copy the code
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,
      ),
    ),
  ),
);
Copy the code