percentify 1.0.3 percentify: ^1.0.3 copied to clipboard
percentage indicator package
Use this package as a library
Depend on it
Run this command:
With Flutter:
$ flutter pub add percentify
This will add a line like this to your package's pubspec.yaml (and run an implicit flutter pub get
):
dependencies:
percentify: ^1.0.3
Alternatively, your editor might support flutter pub get
. Check the docs for your editor to learn more.
Import it
Now in your Dart code, you can use:
import 'package:percentify/components/RectCircularPercentify.dart';
import 'package:percentify/components/RectLinearPercentify.dart';
import 'package:percentify/components/RoundedCircularPercentify.dart';
import 'package:percentify/components/RoundedLinearPercentify.dart';
import 'package:percentify/data/configurations/ShapeConfiguration.dart';
import 'package:percentify/data/configurations/circle/DefaultCircleConfiguration.dart';
import 'package:percentify/data/configurations/circle/ValueCircleConfiguration.dart';
import 'package:percentify/data/configurations/linear/DefaultLinearConfiguration.dart';
import 'package:percentify/data/configurations/linear/ValueLinearConfiguration.dart';
import 'package:percentify/data/constants/ConfigurationData.dart';
import 'package:percentify/painters/circle/AbstractCircularPainter.dart';
import 'package:percentify/painters/circle/RectCircularPainter.dart';
import 'package:percentify/painters/circle/RoundedCircularPainter.dart';
import 'package:percentify/painters/linear/AbstractLinearPainter.dart';
import 'package:percentify/painters/linear/RectLinearPainter.dart';
import 'package:percentify/painters/linear/RoundedLinearPainter.dart';