Update secant/UIComponents/CircularFrame/CircularFrameBadge.swift

agreed

Co-authored-by: dh-ecc <90868897+dh-ecc@users.noreply.github.com>
This commit is contained in:
Lukas Korba 2022-02-23 18:56:53 +01:00 committed by GitHub
parent 3e0addd99e
commit ae2521d408
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 1 deletions

View File

@ -77,7 +77,12 @@ struct BadgesOverlay: Animatable, ViewModifier {
y: proxy.size.height * 0.15
)
.opacity(badgeIndex == viewStore.index ? 1 : 0)
.shadow(color: Asset.Colors.Onboarding.badgeShadow.color, radius: 10, x: 0, y: 0)
.shadow(
color: Asset.Colors.Onboarding.badgeShadow.color,
radius: 10,
x: 0,
y: 0
)
}
}