-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExample.swift
49 lines (44 loc) · 1.18 KB
/
Example.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
48
49
//
// Example.swift
// AnimatableListRow
//
// Created by Joshua Toro on 10/16/24.
//
import SwiftUI
struct ContentView: View {
@State private var isExpanded: Bool = false
var body: some View {
List {
Button("Is Expanded") {
withAnimation {
isExpanded.toggle()
}
}
Section {
VStack(alignment: .leading) {
Text("Steve Jobs")
Text("Steve Wozniak")
Text("Tim Cook")
if isExpanded {
Text("Jony Ive")
Text("Craig Federighi")
Text("Phil Schiller")
Text("Eddy Cue")
Text("Angela Ahrendts")
}
}
.animatableListRow()
.frame(maxWidth: .infinity, alignment: .leading)
.contentShape(.rect)
.onTapGesture {
withAnimation {
isExpanded.toggle()
}
}
}
}
}
}
#Preview {
ContentView()
}