Created
January 30, 2020 23:14
-
-
Save creativecreatorormaybenot/bc5289a551fc29ddaec737058bbe4615 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
final path = Path() | |
..moveTo(0, 0) | |
..lineTo(-w / 2, 0) | |
..lineTo(-w / 2, sh) | |
// And a bunch more operations.. | |
; | |
canvas.drawShadow(path, _shadowColor, _radius / 64, false); | |
canvas.drawPath(path, paint); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment