story_progress 0.0.3
story_progress: ^0.0.3 copied to clipboard
show horizontal progress like instagram stories.
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(),
);
}
}