shimmer_animation 0.0.7 copy "shimmer_animation: ^0.0.7" to clipboard
shimmer_animation: ^0.0.7 copied to clipboard

outdated

This is a new shimmer animation widget that can help you bring simple yet beutiful animations to your project with ease.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:shimmer_animation/shimmer_animation.dart';

void main() {
  runApp(FullPageShimmerExample());
}

class FullPageShimmerExample extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: ShimmerPage(),
    );
  }
}

class ShimmerPage extends StatelessWidget {

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Shimmer(
        duration: Duration(seconds: 3), //Default value
        color: Colors.white, //Default value
        enabled: true, //Default value
        direction: ShimmerDirection.fromLTRB(),  //Default Value
        child: Container(
          color: Colors.deepPurple,
        ),
      ),
    );
  }
}
373
likes
0
pub points
98%
popularity

Publisher

unverified uploader

This is a new shimmer animation widget that can help you bring simple yet beutiful animations to your project with ease.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on shimmer_animation