Skip to content

Instantly share code, notes, and snippets.

@JorgeCastilloPrz
Created May 29, 2019 21:27
Show Gist options
  • Save JorgeCastilloPrz/89c2b4d42b34c246b82af980406206e8 to your computer and use it in GitHub Desktop.
Save JorgeCastilloPrz/89c2b4d42b34c246b82af980406206e8 to your computer and use it in GitHub Desktop.
ArcPainter with overriden paint method.
class ArcPainter extends CustomPainter {
ArcPainter({
this.strokeWidth,
this.backgroundColor,
this.valueColor,
this.headValue,
this.tailValue,
this.stepValue,
this.rotationValue
})
// ...
@override
void paint(Canvas canvas, Size size) {
// ...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment