Undo/Redo with SwiftUI TextField
Reading time: 1 min
This recipe shows how to implement undo and redo with SwiftUI TextField.
Detect Backspace in SwiftUI
Reading time: 2 min
This recipe shows how to detect backspace event in SwiftUI TextField. The method can figure out both if it's a forward or in-text backspace, and doesn't rely on hacks on hidden characters.
SwiftUI Limit Text Length in TextField
Reading time: 1 min
This quick recipe shows how to limit the length of a SwiftUI TextField input.
Expandable Multiline SwiftUI TextField
Reading time: 1 min
This recipe shows how to implement a multiline text field in SwiftUI that expands automatically.
Reading time: 1 min
This recipe shows how to style SwiftUI TextField's prompt / placeholder text, in order to, e.g, change its color or font. Alternatively, you can put a fully custom view for the placeholder.