Skip to content

Instantly share code, notes, and snippets.

@divyanshub024
Created April 9, 2020 09:58
Show Gist options
  • Save divyanshub024/17521a8c9c83200fcafaf5d94eeaf369 to your computer and use it in GitHub Desktop.
Save divyanshub024/17521a8c9c83200fcafaf5d94eeaf369 to your computer and use it in GitHub Desktop.
@override
void paint(Canvas canvas, Size size) {
var path = createPath();
PathMetrics pathMetrics = path.computeMetrics();
for (PathMetric pathMetric in pathMetrics) {
Path extractPath = pathMetric.extractPath(
0.0,
pathMetric.length * progress,
);
canvas.drawPath(extractPath, myPaint);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment