ConfettiSwiftUI icon indicating copy to clipboard operation
ConfettiSwiftUI copied to clipboard

custom views

Open paytontech opened this issue 2 years ago • 1 comments

Description

PR aims to let developers using ConfettiSwiftUI to use custom views as confetti. example:

@ViewBuilder func youDidIt() -> some View {
        Text("You did it!")
        .font(.caption).overlay {
            LinearGradient(colors: [Color.red, Color.orange, Color.yellow, Color.green, Color.blue, Color.purple], startPoint: .leading, endPoint: .trailing).mask {
                Text("You did it!").font(.caption)
            }
        }
    }
//example
.confettiCannon(counter: $confetti, confettis: [.view(AnyView(youDidIt()))])

paytontech avatar Jul 31 '23 18:07 paytontech

Thanks for the suggestion. Removing CaseIterable, Hashable will break some project, e.g. the https://github.com/simibac/ConfettiSwiftUIDemo

Any suggestion how to get this working with CaseIterable, Hashable?

simibac avatar Jan 12 '25 21:01 simibac