Update Shaka Assets and Use for EventActionBar

This commit is contained in:
Joel Klabo
2023-01-07 12:49:39 -08:00
parent b1885700ca
commit 5dbf8029da
9 changed files with 443 additions and 29 deletions

View File

@@ -168,12 +168,8 @@ struct LikeButton: View {
var body: some View {
Button(action: action) {
if liked {
Text("🤙", comment: "Button with emoji to like an event.")
} else {
Text("🤙")
.grayscale(1)
}
Image(liked ? "shaka-full" : "shaka-line")
.foregroundColor(liked ? .orange : .gray)
}
}
}