Skip to content

Commit

Permalink
Bump blur radius
Browse files Browse the repository at this point in the history
  • Loading branch information
codetheweb committed Mar 5, 2021
1 parent c2f8226 commit 0171b67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Widgets/Views.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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)

Expand Down

0 comments on commit 0171b67

Please sign in to comment.