Shimmer
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,
),
),
),
);
Download Flutter Shimmer Plugin source code on GitHub
A package provides an easy way to add shimmer effect in Flutter project
https://github.com/hnvn/flutter_shimmer
205 forks.
1,860 stars.
38 open issues.
Recent commits:
- Merge pull request #78 from hnvn/cursor/ci-test-coveragePublish Flutter test coverage to Codecov., GitHub
- Publish Flutter test coverage to Codecov.Collect lcov in CI, summarize it in the job log, and expose the percentage through Codecov's badge API.Co-authored-by: Cursor <cursoragent@cursor.com>, hunghd
- Merge pull request #77 from hnvn/cursor/docs-tests-animation-lifecyclePrepare 4.0: material_ui migration, animation fixes, and docs, GitHub
- Align the example iOS project with Flutter 3.47.Raise the iOS deployment target, adopt UIScene, and ignore generated SwiftPM/build paths so the demo matches the new SDK floor.Co-authored-by: Cursor <cursoragent@cursor.com>, hunghd
- Migrate to the standalone material_ui package.Flutter 3.47 decoupled Material from the SDK; this major bump requires Flutter 3.44+ so consumers track the new design library.Co-authored-by: Cursor <cursoragent@cursor.com>, hunghd
Get Shimmer package implementation details on PUB
https://pub.dev/packages/shimmer
Provides the list of the opensource Flutter apps collection with GitHub repository.