story_progress 0.0.2
story_progress: ^0.0.2 copied to clipboard
A package provides an easy way to add shimmer effect in Flutter project
example/lib/main.dart
import 'package:flutter/material.dart';
import 'home.dart';
void main() => runApp(MyApp());
/// This is the main application widget.
class MyApp extends StatelessWidget {
static const String _title = 'Flutter Code Sample';
@override
Widget build(BuildContext context) {
return MaterialApp(
title: _title,
home: Home(),
);
}
}