Вы можете использовать следующий способ.
ClipPath(
clipper: TheHill(),
child: Container(
width: 250,
height: 250,
color: Colors.amber,
child: Align(
alignment: Alignment.bottomCenter,
child: Icon(Icons.play_arrow),
),
),
),
Пользовательский Clipper:
class TheHill extends CustomClipper<Path> {
@override
Path getClip(Size size) {
var path = Path();
path.moveTo(size.width * 0.15, size.height);
path.quadraticBezierTo(size.width * 0.25, size.height * 0.99999,
size.width * 0.40, size.height * 0.92);
path.quadraticBezierTo(size.width * 0.5, size.height * 0.87,
size.width * 0.60, size.height * 0.92);
path.quadraticBezierTo(size.width * 0.75, size.height * 0.99999,
size.width * 0.85, size.height);
path.lineTo(size.width, size.height);
path.close();
return path;
}
@override
bool shouldReclip(CustomClipper<Path> oldClipper) => false;
}