Updated for Xcode 12.5
SwiftUI’s button is similar to UIButton
, except it’s more flexible in terms of what content it shows and it uses a closure for its action rather than the old target/action system.
To create a button with a string title you would start with code like this:
Button("Button title") {
// your action here
}
For example, you might make a button that shows or hides some detail text when it’s tapped:
struct ContentView: View {
@State private var showDetails = false
var body: some View {
VStack {
Button("Show details") {
showDetails.toggle()
}
if showDetails {
Text("You should follow me on Twitter: @twostraws")
.font(.largeTitle)
}
}
}
}
Tip: The classic thing to do when you’re learning a framework is to scatter print()
calls around so you can see when things happen. If you want to try that with your button action, you should first right-click on the play button in the preview canvas and choose “Debug Preview” so that your print()
calls work.
The title inside the button can be any kind of view, so you can create an image button like this:
struct ContentView: View {
@State private var showDetails = false
var body: some View {
Button {
print("Image tapped!")
} label: {
Image("example-image")
}
}
}
Using a custom label is really helpful for times you want to increase the tappable area of a button, because you can apply padding to the label then use contentShape(Rectangle())
or similar to make the whole area tappable.
For example, this adds 20 points of padding to a button’s label, to ensure it’s tappable in a much larger space than would otherwise be possible:
Button {
print("Button pressed")
} label: {
Text("Press Me")
.padding(20)
}
.contentShape(Rectangle())
SPONSORED Building and maintaining in-app subscription infrastructure is hard. Luckily there's a better way. With RevenueCat, you can implement subscriptions for your app in hours, not months, so you can get back to building your app.
Sponsor Hacking with Swift and reach the world's largest Swift community!
Link copied to your pasteboard.