我正在尝试使自定义画家的三角形具有圆角。左边的图像是我到目前为止所拥有的,右边的图像是我想做的。
这是我的代码。
class Triangle extends StatelessWidget {
const Triangle({
Key? key,
}) : super(key: key);
@override
Widget build(BuildContext context) {
return CustomPaint(
painter: MyPainter(),
child: Container(
height: MySize.yMargin(10),
width: MySize.xMargin(20),
decoration: BoxDecoration(borderRadius: BorderRadius.circular(30)),
child: Center(
child: Padding(
padding: const EdgeInsets.only(left: 30.0, bottom: 16),
child: Transform.rotate(
angle: math.pi / 4,
child: Text('New',
style: TextStyle(
color: Colors.white,
fontSize: MySize.textSize(5),
fontWeight: FontWeight.bold,
)))))));
}
}
class MyPainter extends CustomPainter {
@override
void paint(Canvas canvas, Size size) {
final paint = Paint();
paint.color = Colors.yellow;
var path = Path();
path.lineTo(size.width, 0);
path.lineTo(size.height, size.width);
path.close();
canvas.drawPath(path, paint);
}
@override
bool shouldRepaint(CustomPainter oldDelegate) => false;
}