[CHANGE] Fixed the AppRowView background blur effect

This commit is contained in:
Fabian Thies
2022-12-12 19:20:54 +01:00
committed by Joe Mattiello
parent 378631e976
commit a0eb30f98e
2 changed files with 30 additions and 1 deletions

View File

@@ -39,7 +39,8 @@ struct AppRowView: View {
AppPillButton(app: app)
}
.padding()
.background(Color(storeApp?.tintColor ?? UIColor.black).opacity(0.5))
.blurBackground(.systemUltraThinMaterialLight)
.background(Color(storeApp?.tintColor ?? UIColor.black).opacity(0.4))
.clipShape(RoundedRectangle(cornerRadius: 30, style: .circular))
}
}