I am currently migrating some SwiftUI code from combine to the new observation framework and I want to know how I can I maintain debounce? Is there anyway to natively debounce from within the Observation framework?
I have tried combining Combine ~no pun intended~ with the Observation framework and it produces a slew of errors.
If you just want to debounce, you can use this code :
Put this code in your Observable:
And somewhere on your SwiftUI View for example: