diff --git a/Widgets/Views.swift b/Widgets/Views.swift index 6c34eba..801859c 100644 --- a/Widgets/Views.swift +++ b/Widgets/Views.swift @@ -42,7 +42,7 @@ struct LargeComicWidgetView: View { var body: some View { ZStack { GeometryReader { geom in - Image(uiImage: entry.uiImage).resizable().aspectRatio(contentMode: .fill).scaleEffect(1.05).blur(radius: entry.shouldBlur ? 2 : 0) + Image(uiImage: entry.uiImage).resizable().aspectRatio(contentMode: .fill).scaleEffect(1.05).blur(radius: entry.shouldBlur ? 5 : 0) Rectangle().fill(LinearGradient(gradient: Gradient(colors: [Color.black.opacity(0.8), Color.black.opacity(0.5), Color.white.opacity(0)]), startPoint: .top, endPoint: .bottom)).frame(width: geom.size.width, height: geom.size.height / 2)