3

我正在尝试制作一个自定义弯曲的应用栏,如下例所示 在此处输入图像描述

经过多次尝试,这是我的镜头

在此处输入图像描述

源代码 :

class CustomShapeBorder extends ContinuousRectangleBorder {
  @override
  Path getOuterPath(Rect rect, {TextDirection textDirection}) {
    final double innerCircleRadius = 150.0;

    Path path = Path();
    path.lineTo(0, rect.height);
    path.cubicTo(rect.width / 1.5 - 40, rect.height + innerCircleRadius - 40, rect.width / 1.5 + 40,
        rect.height + innerCircleRadius - 40, rect.width / 1.5 + 75, rect.height + 50);
    path.quadraticBezierTo(
        rect.width / 1.5 + (innerCircleRadius / 2) + 30, rect.height + 35, rect.width, rect.height);
    path.lineTo(rect.width, 0.0);
    path.close();

    return path;
  }
}

有没有一种简单的方法来制作它,例如 SVG。

4

1 回答 1

0

我可以得出这个结果:

在此处输入图像描述

这是Path

double x = 150, y = 45, r = 0.5;
Path path = Path()
  ..addRRect(RRect.fromRectAndCorners(rect))
  ..moveTo(rect.bottomRight.dx - 30, rect.bottomCenter.dy)
  ..relativeQuadraticBezierTo(((-x / 2)+(x/6)) * (1 - r), 0, -x / 2 * r, y * r)
  ..relativeQuadraticBezierTo(-x / 6 * r, y * (1 - r), -x / 2 * (1 - r), y * (1 - r))
  ..relativeQuadraticBezierTo(((-x / 2)+(x/6)) * (1 - r), 0, -x / 2 * (1 - r), -y * (1 - r))
  ..relativeQuadraticBezierTo(-x/6*r , -y * r, -x / 2 * r, -y * r);

这是一篇很好的文章,可以查看制作形状的基础知识:Flutter 中的路径:视觉指南

于 2019-10-18T18:41:19.653 回答