我试图复制的加号和减号按钮的产品数量在Flutter,我想使用ClipPath与子容器.有没有办法找到路径使用的形状或我不得不猜测?和有没有更好的解决方案,而不是裁剪?
ClipPath(
child: Container(
width: MediaQuery.of(context).size.width,
height: 200,
color: Colors.red,
),
clipper: CustomClipPath(),
),
);
1条答案
按热度按时间lokaqttq1#
您可以使用flutter shape maker将svg转换为自定义路径。