Skip to content

Instantly share code, notes, and snippets.

@iband
iband / Editing.swift
Last active December 14, 2023 14:48 — forked from JadenGeller/Editing.swift
SwiftUI editing Binding for UITextView (UIResponder) firstResponder
import SwiftUI
import Dispatch
extension View {
// Warning: This will affect the layout of the view that's wrapped! :(
public func editing(_ isEditing: Binding<Bool>) -> some View {
EditingProxy(rootView: self, isEditing: isEditing)
}
}