I put on an image and it fills widget view.
And I made small view and wanted this view shows blurred imaged of behind image.
(image and small view are in the ZStack)
I used few code (something like Option 2 from Is there a method to blur a background in SwiftUI?)
but the result is like
I think that yellow box means 'VisualEffectView doesn't work in WidgetKit.'
So I wonder if there is other technique to show small view that shows blurred behind image?


Yes, specifically because you can't use
UIViewRepresentablein Widgets. See:It means that the only option is to use SwiftUI code. A possible solution is here (Option 1):