I get the following error when I try to use the nullable Binding extensions like Binding($cdObject.notes, replacingNilWith: "") via the Swift Package Manager
'Binding<Value>' initializer is inaccessible due to 'internal' protection level
If I copy OptionalBinding.swift into my project. It works fine. Maybe all that is needed is that the extension functions are marked as public?
I get the following error when I try to use the nullable
Bindingextensions likeBinding($cdObject.notes, replacingNilWith: "")via the Swift Package ManagerIf I copy
OptionalBinding.swiftinto my project. It works fine. Maybe all that is needed is that the extension functions are marked as public?