-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTapGesture.swift
47 lines (41 loc) · 1.21 KB
/
TapGesture.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import SwiftUI
struct TapGesture: View {
@State var isSelected: Bool = false
var body: some View {
VStack(spacing: 40) {
RoundedRectangle(cornerRadius: 25)
.frame(height: 200)
.foregroundStyle(isSelected ? .green : .red)
Button(
action: {
isSelected.toggle()
},
label: {
Text("Click me")
.foregroundStyle(.white)
.padding()
.padding(.horizontal)
.background(.indigo)
.cornerRadius(10)
}
)
Text("Tap Gesture")
.foregroundStyle(.white)
.padding()
.padding(.horizontal)
.background(.indigo)
.cornerRadius(10)
// .onTapGesture {
// isSelected.toggle()
// }
.onTapGesture(count: 5, perform: {
isSelected.toggle()
})
Spacer()
}
.padding(40)
}
}
#Preview {
TapGesture()
}