We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I try to add an emoji which is recieved by an APN:
@State private var receivedEmoji: String = "🎉" @State private var cannonEmoji: String = "🥥" [...] VStack { [...] .onChange(of: receivedEmoji) { newValue in animationCounter += 1 cannonEmoji = newValue print("Emoji \(cannonEmoji)") <--- here it prints the recieved emoji and not the initialized one. } // .animation(.easeInOut(duration: 0.5), value: sortedActions) ConfettiCannon(counter: $animationCounter ,confettis: [.text(cannonEmoji)], confettiSize: 20)
.text(cannonEmoji)allways fires the coconut (🥥) - which looks also great. :D
.text(cannonEmoji)
How can I solve this?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I try to add an emoji which is recieved by an APN:
.text(cannonEmoji)
allways fires the coconut (🥥) - which looks also great. :DHow can I solve this?
The text was updated successfully, but these errors were encountered: