progress_meter 0.0.1 copy "progress_meter: ^0.0.1" to clipboard
progress_meter: ^0.0.1 copied to clipboard

A new Flutter package project.

Progress Meter #

Progress meter package lets you add a beautiful progress indicator to your Flutter app.

Installation #

  1. Add the latest version of package to your pubspec.yaml (and rundart pub get):
dependencies:
  progress_meter: ^0.0.1
  1. Import the package and use it in your Flutter App.
import 'package:progress_meter/progress_meter.dart';

Example #

There are a number of properties that you can modify:

  • begin
  • end
  • color
  • levelText
  • duration

class ProgressScreen extends StatelessWidget {  
  const ProgressScreen({Key? key}) : super(key: key);  
  
  @override  
  Widget build(BuildContext context) {  
    return Scaffold(  
      body: Center(  
        child: const ProgressMeter(
                  begin: 0.0,
                  end: 1.58,
                  color: Colors.blueGrey,
                  duration: 3,
                  levelText: "Moderate",
                ),
      ),  
    );  
  }  
}

progress_meter

4
likes
90
pub points
34%
popularity

Publisher

unverified uploader

A new Flutter package project.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on progress_meter