I'm trying to convert figma ui into flutter, the ellipse prevent the container to reduce the radius on one angle.
here is a figma ui:

The code I'm trying:
child: Container(
decoration: BoxDecoration(
boxShadow: [
BoxShadow(
color: Color(0x40000000),
spreadRadius: 4.0,
blurRadius: 4.0,
offset: Offset(-5.0, 4.0),
),
],
borderRadius: BorderRadius.all(Radius.circular(15.0)),
),
alignment: Alignment.center,
child: Stack(
children: [
Positioned(
top: -92.26,
left: -117.71,
child: Container(
height: 183.47,
width: 170.36,
decoration: BoxDecoration(
shape: BoxShape.circle,
boxShadow: [
BoxShadow(
blurRadius: 100,
spreadRadius: 6,
color: Color.fromARGB(255, 125, 223, 247),
),
],
),
),
),
],
),
),

Positionedwidget is displayed too far from its parentstackwhich leads to cover the underlying container and its topLeft angel .you can use
LinearGradientcolor:I think Linear gradient color is most closely to what your are trying to do.
or you can use your own customization, refactored here
result:
Hope it helps you.