activity_ring library

Library to create Progress bars in Apple Watch style rings - Apple Watch Rings

To use, import package:activity_ring/activity_ring.dart.

This library comes with default template gradients to easily get rings style to match Apple watch ring colors. If you dont want that you can easily get started with a single color too, gradients and animations will be handled by library in both cases.

The library can gracefully handle when percent is greater than 100%. In which case, a new ring will be drawn on the existing 100% ring just like iOS activity app rings. For example when ring's percent is 160%, we first draw a full ring to cover 100% and then a partial ring with 60%. Genral rule of thmb while looking at docs is when it says second ring then its the ring that get painted when percent is between 100 and 200. Similarly for third, fourth etc.

This library is built with to be extremely customizable with low effort. Please check the API documentation if you get stuck anywhere.

Classes

DrawFullRing
Draws a full ring with width and radius.
DrawRing
Custom painter to draw ring
Ring
A progress indicator widget with Apple Watch Rings style
RingColorScheme
Color scheme for painting progress rings.
RingPaints
A helper class to fetch paints easily

Functions

brighten(Color color, double percent) Color
Brighten a color by percent
darken(Color color, double percent) Color
Darken a color by percent
degreeToRadians(double degree) double
Convert degrees to radians.