progress_indicator 0.1.0 copy "progress_indicator: ^0.1.0" to clipboard
progress_indicator: ^0.1.0 copied to clipboard

outdated

A useful collection of custom progress indicators for flutter.

example/main.dart

import 'package:flutter/material.dart';
import 'package:progress_indicator/progress_indicator.dart';
 
void main() => runApp(MyApp());
 
class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Progress Indicator App',
      home: Scaffold(
        appBar: AppBar(
          title: Text('Progress indicator'),
        ),
        body: Center(
          child: Container(
            width: 150,
            height: 150,
            child: CircularProgress(
              percentage: 50,
              color: Colors.amber,
              backColor: Colors.blueGrey,
            ),
          ),
        ),
      ),
    );
  }
}
36
likes
0
points
277
downloads

Publisher

verified publisherrodrigoleonel.com

Weekly Downloads

A useful collection of custom progress indicators for flutter.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on progress_indicator