How to convert value of optional type Binding<T?>? to Binding<T?> in SwiftUI? – Ios swift
I have an init like so: @Binding var height: Double? init(height: Binding<Double?>? = nil) { self._height = height } I am getting an error: Value of optional type 'Binding<Double?>?' must be unwrapped to a value of type 'Binding<Double?>' What would…