123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499 |
- //import 'dart:math';
- import 'package:flutter/material.dart';
- import 'dart:math' as math;
- enum CircularStrokeCap { butt, round, square }
- enum ArcType {
- HALF,
- FULL,
- }
- // ignore: must_be_immutable
- class CircularPercentIndicator extends StatefulWidget {
- ///Percent value between 0.0 and 1.0
- final double percent;
- final double radius;
- ///Width of the progress bar of the circle
- final double lineWidth;
- ///Width of the unfilled background of the progress bar
- final double backgroundWidth;
- ///Color of the background of the circle , default = transparent
- final Color fillColor;
- ///First color applied to the complete circle
- final Color backgroundColor;
- Color get progressColor => _progressColor;
- Color _progressColor;
- ///true if you want the circle to have animation
- final bool animation;
- ///duration of the animation in milliseconds, It only applies if animation attribute is true
- final int animationDuration;
- ///widget at the top of the circle
- final Widget header;
- ///widget at the bottom of the circle
- final Widget footer;
- ///widget inside the circle
- final Widget center;
- final LinearGradient linearGradient;
- ///The kind of finish to place on the end of lines drawn, values supported: butt, round, square
- final CircularStrokeCap circularStrokeCap;
- ///the angle which the circle will start the progress (in degrees, eg: 0.0, 45.0, 90.0)
- final double startAngle;
- /// set true if you want to animate the linear from the last percent value you set
- final bool animateFromLastPercent;
- /// set false if you don't want to preserve the state of the widget
- final bool addAutomaticKeepAlive;
- /// set the arc type
- final ArcType arcType;
- /// set a circular background color when use the arcType property
- final Color arcBackgroundColor;
- /// set true when you want to display the progress in reverse mode
- final bool reverse;
- /// Creates a mask filter that takes the progress shape being drawn and blurs it.
- final MaskFilter maskFilter;
- /// set a circular curve animation type
- final Curve curve;
- /// set true when you want to restart the animation, it restarts only when reaches 1.0 as a value
- /// defaults to false
- final bool restartAnimation;
- /// Callback called when the animation ends (only if `animation` is true)
- final VoidCallback onAnimationEnd;
- /// Display a widget indicator at the end of the progress. It only works when `animation` is true
- final Widget widgetIndicator;
- /// Set to true if you want to rotate linear gradient in accordance to the [startAngle].
- final bool rotateLinearGradient;
- CircularPercentIndicator(
- {Key key,
- this.percent = 0.0,
- this.lineWidth = 5.0,
- this.startAngle = 0.0,
- @required this.radius,
- this.fillColor = Colors.transparent,
- this.backgroundColor = const Color(0xFFB8C7CB),
- Color progressColor,
- this.backgroundWidth =
- -1, //negative values ignored, replaced with lineWidth
- this.linearGradient,
- this.animation = false,
- this.animationDuration = 500,
- this.header,
- this.footer,
- this.center,
- this.addAutomaticKeepAlive = true,
- this.circularStrokeCap,
- this.arcBackgroundColor,
- this.arcType,
- this.animateFromLastPercent = false,
- this.reverse = false,
- this.curve = Curves.linear,
- this.maskFilter,
- this.restartAnimation = false,
- this.onAnimationEnd,
- this.widgetIndicator,
- this.rotateLinearGradient = false})
- : super(key: key) {
- if (linearGradient != null && progressColor != null) {
- throw ArgumentError(
- 'Cannot provide both linearGradient and progressColor');
- }
- _progressColor = progressColor ?? Colors.red;
- assert(startAngle >= 0.0);
- assert(curve != null);
- if (percent < 0.0 || percent > 1.0) {
- throw Exception("Percent value must be a double between 0.0 and 1.0");
- }
- if (arcType == null && arcBackgroundColor != null) {
- throw ArgumentError('arcType is required when you arcBackgroundColor');
- }
- }
- @override
- _CircularPercentIndicatorState createState() =>
- _CircularPercentIndicatorState();
- }
- class _CircularPercentIndicatorState extends State<CircularPercentIndicator>
- with SingleTickerProviderStateMixin, AutomaticKeepAliveClientMixin {
- AnimationController _animationController;
- Animation _animation;
- double _percent = 0.0;
- @override
- void dispose() {
- if (_animationController != null) {
- _animationController.dispose();
- }
- super.dispose();
- }
- @override
- void initState() {
- if (widget.animation) {
- _animationController = AnimationController(
- vsync: this,
- duration: Duration(milliseconds: widget.animationDuration));
- _animation = Tween(begin: 0.0, end: widget.percent).animate(
- CurvedAnimation(parent: _animationController, curve: widget.curve),
- )..addListener(() {
- setState(() {
- _percent = _animation.value;
- });
- if (widget.restartAnimation && _percent == 1.0) {
- _animationController.repeat(min: 0, max: 1.0);
- }
- });
- _animationController.addStatusListener((status) {
- if (widget.onAnimationEnd != null &&
- status == AnimationStatus.completed) {
- widget.onAnimationEnd();
- }
- });
- _animationController.forward();
- } else {
- _updateProgress();
- }
- super.initState();
- }
- void _checkIfNeedCancelAnimation(CircularPercentIndicator oldWidget) {
- if (oldWidget.animation &&
- !widget.animation &&
- _animationController != null) {
- _animationController.stop();
- }
- }
- @override
- void didUpdateWidget(CircularPercentIndicator oldWidget) {
- super.didUpdateWidget(oldWidget);
- if (oldWidget.percent != widget.percent ||
- oldWidget.startAngle != widget.startAngle) {
- if (_animationController != null) {
- _animationController.duration =
- Duration(milliseconds: widget.animationDuration);
- _animation = Tween(
- begin: widget.animateFromLastPercent ? oldWidget.percent : 0.0,
- end: widget.percent)
- .animate(
- CurvedAnimation(parent: _animationController, curve: widget.curve),
- );
- _animationController.forward(from: 0.0);
- } else {
- _updateProgress();
- }
- }
- _checkIfNeedCancelAnimation(oldWidget);
- }
- _updateProgress() {
- setState(() {
- _percent = widget.percent;
- });
- }
- @override
- Widget build(BuildContext context) {
- super.build(context);
- var items = List<Widget>();
- if (widget.header != null) {
- items.add(widget.header);
- }
- items.add(
- Container(
- height: widget.radius,
- width: widget.radius,
- child: Stack(
- children: [
- CustomPaint(
- painter: CirclePainter(
- progress: _percent * 360,
- progressColor: widget.progressColor,
- backgroundColor: widget.backgroundColor,
- startAngle: widget.startAngle,
- circularStrokeCap: widget.circularStrokeCap,
- radius: (widget.radius / 2) - widget.lineWidth / 2,
- lineWidth: widget.lineWidth,
- backgroundWidth: //negative values ignored, replaced with lineWidth
- widget.backgroundWidth >= 0.0
- ? (widget.backgroundWidth)
- : widget.lineWidth,
- arcBackgroundColor: widget.arcBackgroundColor,
- arcType: widget.arcType,
- reverse: widget.reverse,
- linearGradient: widget.linearGradient,
- maskFilter: widget.maskFilter,
- rotateLinearGradient: widget.rotateLinearGradient),
- child: (widget.center != null)
- ? Center(child: widget.center)
- : Container(),
- ),
- if (widget.widgetIndicator != null && widget.animation)
- Positioned.fill(
- child: Transform.rotate(
- angle: radians(
- (widget.circularStrokeCap != CircularStrokeCap.butt &&
- widget.reverse)
- ? -15
- : 0),
- child: Transform.rotate(
- angle: radians((widget.reverse ? -360 : 360) * _percent),
- child: Transform.translate(
- offset: Offset(
- (widget.circularStrokeCap != CircularStrokeCap.butt)
- ? widget.lineWidth / 2
- : 0,
- (-widget.radius / 2 + widget.lineWidth / 2),
- ),
- child: widget.widgetIndicator,
- ),
- ),
- ),
- ),
- ],
- ),
- ),
- );
- if (widget.footer != null) {
- items.add(widget.footer);
- }
- return Material(
- color: widget.fillColor,
- child: Container(
- child: Column(
- mainAxisAlignment: MainAxisAlignment.center,
- mainAxisSize: MainAxisSize.min,
- children: items,
- ),
- ),
- );
- }
- @override
- bool get wantKeepAlive => widget.addAutomaticKeepAlive;
- }
- class CirclePainter extends CustomPainter {
- final Paint _paintBackground = Paint();
- final Paint _paintLine = Paint();
- final Paint _paintBackgroundStartAngle = Paint();
- final double lineWidth;
- final double backgroundWidth;
- final double progress;
- final double radius;
- final Color progressColor;
- final Color backgroundColor;
- final CircularStrokeCap circularStrokeCap;
- final double startAngle;
- final LinearGradient linearGradient;
- final Color arcBackgroundColor;
- final ArcType arcType;
- final bool reverse;
- final MaskFilter maskFilter;
- final bool rotateLinearGradient;
- CirclePainter(
- {this.lineWidth,
- this.backgroundWidth,
- this.progress,
- @required this.radius,
- this.progressColor,
- this.backgroundColor,
- this.startAngle = 0.0,
- this.circularStrokeCap = CircularStrokeCap.round,
- this.linearGradient,
- this.reverse,
- this.arcBackgroundColor,
- this.arcType,
- this.maskFilter,
- this.rotateLinearGradient}) {
- _paintBackground.color = backgroundColor;
- _paintBackground.style = PaintingStyle.stroke;
- _paintBackground.strokeWidth = backgroundWidth;
- if (circularStrokeCap == CircularStrokeCap.round) {
- _paintBackground.strokeCap = StrokeCap.round;
- } else if (circularStrokeCap == CircularStrokeCap.butt) {
- _paintBackground.strokeCap = StrokeCap.butt;
- } else {
- _paintBackground.strokeCap = StrokeCap.square;
- }
- if (arcBackgroundColor != null) {
- _paintBackgroundStartAngle.color = arcBackgroundColor;
- _paintBackgroundStartAngle.style = PaintingStyle.stroke;
- _paintBackgroundStartAngle.strokeWidth = lineWidth;
- if (circularStrokeCap == CircularStrokeCap.round) {
- _paintBackgroundStartAngle.strokeCap = StrokeCap.round;
- } else if (circularStrokeCap == CircularStrokeCap.butt) {
- _paintBackgroundStartAngle.strokeCap = StrokeCap.butt;
- } else {
- _paintBackgroundStartAngle.strokeCap = StrokeCap.square;
- }
- }
- _paintLine.color = progressColor;
- _paintLine.style = PaintingStyle.stroke;
- _paintLine.strokeWidth = lineWidth;
- _paintLine.strokeJoin = StrokeJoin.round;
- if (circularStrokeCap == CircularStrokeCap.round) {
- _paintLine.strokeCap = StrokeCap.round;
- } else if (circularStrokeCap == CircularStrokeCap.butt) {
- _paintLine.strokeCap = StrokeCap.butt;
- } else {
- _paintLine.strokeCap = StrokeCap.square;
- }
- }
- @override
- void paint(Canvas canvas, Size size) {
- final center = Offset(size.width / 2, size.height / 2);
- double fixedStartAngle = startAngle;
- final rectForArc = Rect.fromCircle(center: center, radius: radius);
- double startAngleFixedMargin = 1.0;
- if (arcType != null) {
- if (arcType == ArcType.FULL) {
- fixedStartAngle = 220;
- startAngleFixedMargin = 172 / fixedStartAngle;
- } else {
- fixedStartAngle = 270;
- startAngleFixedMargin = 135 / fixedStartAngle;
- }
- }
- if (arcType == ArcType.HALF) {
- canvas.drawArc(rectForArc, radians(-90.0 + fixedStartAngle),
- radians(360 * startAngleFixedMargin), false, _paintBackground);
- } else {
- canvas.drawCircle(center, radius, _paintBackground);
- }
- if (maskFilter != null) {
- _paintLine.maskFilter = maskFilter;
- }
- if (linearGradient != null) {
- if (rotateLinearGradient && progress > 0) {
- double correction = 0;
- if (_paintLine.strokeCap == StrokeCap.round ||
- _paintLine.strokeCap == StrokeCap.square) {
- if (reverse) {
- correction = math.atan(_paintLine.strokeWidth / 2 / radius);
- } else {
- correction = math.atan(_paintLine.strokeWidth / 2 / radius);
- }
- }
- _paintLine.shader = SweepGradient(
- transform: reverse
- ? GradientRotation(
- radians(-90 - progress + startAngle) - correction)
- : GradientRotation(
- radians(-90.0 + startAngle) - correction),
- startAngle: radians(0),
- endAngle: radians(progress),
- tileMode: TileMode.clamp,
- colors: reverse
- ? linearGradient.colors.reversed.toList()
- : linearGradient.colors)
- .createShader(
- Rect.fromCircle(
- center: center,
- radius: radius,
- ),
- );
- } else if (!rotateLinearGradient) {
- _paintLine.shader = linearGradient.createShader(
- Rect.fromCircle(
- center: center,
- radius: radius,
- ),
- );
- }
- }
- fixedStartAngle = startAngle;
- startAngleFixedMargin = 1.0;
- if (arcType != null) {
- if (arcType == ArcType.FULL) {
- fixedStartAngle = 220;
- startAngleFixedMargin = 172 / fixedStartAngle;
- } else {
- fixedStartAngle = 270;
- startAngleFixedMargin = 135 / fixedStartAngle;
- }
- }
- if (arcBackgroundColor != null) {
- canvas.drawArc(
- Rect.fromCircle(center: center, radius: radius),
- radians(-90.0 + fixedStartAngle),
- radians(360 * startAngleFixedMargin),
- false,
- _paintBackgroundStartAngle,
- );
- }
- if (reverse) {
- final start =
- radians(360 * startAngleFixedMargin - 90.0 + fixedStartAngle);
- final end = radians(-progress * startAngleFixedMargin);
- canvas.drawArc(
- Rect.fromCircle(
- center: center,
- radius: radius,
- ),
- start,
- end,
- false,
- _paintLine,
- );
- } else {
- final start = radians(-90.0 + fixedStartAngle);
- final end = radians(progress * startAngleFixedMargin);
- canvas.drawArc(
- Rect.fromCircle(
- center: center,
- radius: radius,
- ),
- start,
- end,
- false,
- _paintLine,
- );
- }
- }
- @override
- bool shouldRepaint(CustomPainter oldDelegate) {
- return true;
- }
- }
- num radians(num deg) => deg * (math.pi / 180.0);
|