ConfettiSwiftUI
ConfettiSwiftUI copied to clipboard
Change type of trigger binding (feature request)
Will be great to change counter: Binding<Int> to trigger: Binding<Any> where Any can by generic parameter or really Any.
I'm sure that it's reasonable because:
- We're need to know that wrappedValue just changed, not the value exactly
- The type
Binding<Int>enforces user to have binding of this type only, specially for this case - There are no breaking changes.