If you are trying to follow along, please know that SwiftUI requires XCode 11 and macOS 10.15, all of which is in developer beta right now.
This post will walk you through how to make a basic iOS app that counts how many times a button is tapped.
The first step is to launch XCode and create a new single page iOS application. When creating the iOS app, make sure Use SwiftUI
is checked.
Next, we need to create a @State
variable so that it can dynamically change when a button is tapped. Inside the ContentView struct, add @State var totalClicked: Int = 0
and change the string inside Text()
to "\(totalClicked)")
.
Your struct should look like this now.
struct ContentView : View {
@State var totalClicked: Int = 0
var body: some View {
Text("Hello World")
}
}
Text()
in a Verticle StackNow, we need to embed the text in a verticle stack to place the button below the Text()
. To do this Command + Click on the 0
in the live preview and choose Embed in VStack
.
By embedding in a VStack, the struct now looks like this:
struct ContentView : View {
@State var totalClicked: Int = 0
var body: some View {
VStack { // this was added
Text("Hello World")
}
}
}
It’s time to add a button. A way to do this is by first adding a Text()
. Add the following to your struct:
// more stuff above
VStack {
Text("\(totalClicked)")
Text("Increment Total) // <- This is what to add
}
// more stuff below
Now, let’s use the live preview to embed the Text()
in a button. Command + Click on Increment Total in Live Preview and select Embed in Button
.
We need to adjust the Button code that is now in ContentView.swift
. Adjust button to look like the following:
var body: some View {
VStack {
Text("\(totalClicked)")
Button(action: {self.totalClicked = self.totalClicked + 1}) {
Text("Increment Total")
}
}
}
Now, if you run the app it will work!
Currently, the button and the text have no space between each other and the size of the total is quite small. In SwiftUI, you can adjust this pretty easily.
First, let’s adjust the font size of the total by adding .font(.title)
after the Text call.
Text("\(totalClicked").font(.title)
Next, we will add some space between the button and the text. To do this, we need to add Spacer()
between the text and the button.
Text("\(totalClicked)").font(.title)
Spacer()
Button(action: {self.totalClicked = self.totalClicked + 1}) {
Text("Increment Total")
}
The touch target on the button is a little small, so to make it bigger we will add padding to it.
Button(action: {self.totalClicked = self.totalClicked + 1}) {
Text("Increment Total")
} .padding(.all)
The .all
is adding padding to all sides of the button instead of just to the top, bottom, left, or right.
Finally, let’s add padding to the entire Vstack
so that the app will fill the screen of the device.
var body: some View {
Vstack {
Text("\(totalClicked)").font(.title)
Spacer()
Button(action: {self.totalClicked = self.totalClicked + 1}) {
Text("Increment Total")
}.padding(.all)
}.padding(.all, 40)
}
The .padding(.all, 40)
will tell this VStack
to have a 40 point distance to it’s closest members on the top, left, right, and bottom.
or support my work monthly on Patreon.
Supporting me on Ko-Fi, Buy Me a Coffee, or on Patreon will have your name listed as a supporter at the end of my streams for that month and on my supporters page.