I want to make a view inside the dash (3 m/s)

So I thought it would be fine if I apply a shadow to the outside of the transparent Circle.
Like this.

So I wrote the code below, but when I fill .clear color, I couldn't get a shadow.
Circle()
.fill(.clear)
.shadow(color: Color.black.opacity(0.3),
radius: 10)
.padding()
Any idea to apply shadow to transparent view?
