Until it gets fixed...Workaround; make your binding initialization explicit, this way:struct MyView: View {
@Binding var variable: Bool
var body: some View {
...
}
init(variable binding: Binding<Bool>) {
self._variable = binding
}
}That should work. Hope I helped.