// // BindingNot.swift // Jel // // Created by zerocool on 2/20/24. // import Foundation import SwiftUI extension Binding where Value == Bool { var not: Binding { Binding( get: { !self.wrappedValue }, set: { self.wrappedValue = !$0 } ) } }