How do I add a visual effect view with blur/translucency to a widget background?
struct mainWidgetEntryView : View {
var entry: Provider.Entry
var body: some View {
ZStack {
Text(entry.date, style: .time)
}
//.background(Color.clear) - did not work
//.visualEffect(.systemBlur) - did not work
}
}