SwiftUI: Cannot convert value of type ‘Bool’ to expected argument type ‘Binding’

In my case, I was in need to pass “true”, not a var…

The solution was easy peasy:

.constant(true)

Leave a Comment