An elliptical shape.
Ellipse(): Shape;
Ellipse()
.fill(Color("purple"))
.frame({ width: 150, height: 100 })
Ellipse()
.stroke({ style: Color("orange"), lineWidth: 4 })
.frame({ width: 200, height: 80 })
ZStack([
Ellipse()
.fill(Color("cyan")),
Ellipse()
.stroke({ style: Color("navy"), lineWidth: 3 })
])
.frame({ width: 120, height: 180 })
Ellipse()
.fill(LinearGradient({
colors: [Color("pink"), Color("purple")],
startPoint: "topLeading",
endPoint: "bottomTrailing"
}))
.frame({ width: 160, height: 100 })