Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/hnvn/flutter_shimmer

A package provides an easy way to add shimmer effect in Flutter project
https://github.com/hnvn/flutter_shimmer

animation dart flutter loading

Last synced: about 2 months ago
JSON representation

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

Lists

README

        

# Shimmer

[![pub package](https://img.shields.io/pub/v/shimmer.svg)](https://pub.dartlang.org/packages/shimmer) ![](https://github.com/hnvn/flutter_shimmer/workflows/unit%20test/badge.svg)

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




## How to use

```dart
import 'package:shimmer/shimmer.dart';

```

```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,
),
),
),
);

```