Is there a way to e.g. logically negate Binding<Bool>? For example, I've a state variable
@State var isDone = true
which I pass as a biding into different sub views. Then I want to use it e.g. with isActive in NavigationLink, so that it shows only when not isDone:
NavigationLink(destination: ..., isActive: ! self.$isDone ) // <- `!` means `not done`
Of course, I can invert my logic with isDone -> isNotDone, but it would be unnatural in many contexts. So is there any simple way to make inverse of a bool binding?