Created
November 7, 2018 16:58
-
-
Save d3xvn/2ba53dce07583fe9c7c4345453921631 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
class _DiamondBorder extends ShapeBorder { | |
const _DiamondBorder(); | |
@override | |
EdgeInsetsGeometry get dimensions { | |
return const EdgeInsets.only(); | |
} | |
@override | |
Path getInnerPath(Rect rect, { TextDirection textDirection }) { | |
return getOuterPath(rect, textDirection: textDirection); | |
} | |
@override | |
Path getOuterPath(Rect rect, { TextDirection textDirection }) { | |
return Path() | |
..moveTo(rect.left + rect.width / 2.0, rect.top) | |
..lineTo(rect.right, rect.top + rect.height / 2.0) | |
..lineTo(rect.left + rect.width / 2.0, rect.bottom) | |
..lineTo(rect.left, rect.top + rect.height / 2.0) | |
..close(); | |
} | |
@override | |
void paint(Canvas canvas, Rect rect, { TextDirection textDirection }) {} | |
// This border doesn't support scaling. | |
@override | |
ShapeBorder scale(double t) { | |
return null; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment