Updated for Xcode 14.2
New in iOS 15
By default, TextField
and SecureField
show a simple “Return” button on the keyboard, but the submitLabel()
modifier let us choose from a range of alternatives.
For example, if you wanted to show the localized form of “Join” for the button, you would use this:
struct ContentView: View {
@State private var username = ""
var body: some View {
TextField("Username", text: $username)
.submitLabel(.join)
}
}
Download this as an Xcode project
There are lots of different button options you choose from by passing different values to submitLabel()
:
continue
done
go
join
next
return
route
search
send
All those work equally well with TextField
, SecureField
, and TextView
.
SPONSORED Thorough mobile testing hasn’t been efficient testing. With Waldo Sessions, it can be! Test early, test often, test directly in your browser and share the replay with your team.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Link copied to your pasteboard.