Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. # CustomClipper <code dart> class CircleClipper extends CustomClipper<Path> { @override Path getClip(Size size) { var path = Path(); path.lineTo(0, size.height - 80); path.quadraticBezierTo( size.width / 2, size.height, size.width, size.height - 80); path.lineTo(size.width, 0); path.close(); return path; } @override bool shouldReclip(covariant CustomClipper<Path> oldClipper) { return true; } } </code> open/customclipper.txt Last modified: 2024/10/05 06:15by 127.0.0.1