Last active
March 16, 2022 09:40
-
-
Save swiftui-lab/ad082f340cac040889502a966bd7b0c4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// The SwiftUI Lab: https://swiftui-lab.com | |
// Article: Inspecting the View Tree – Part 1 | |
// https://swiftui-lab.com/communicating-with-the-view-tree-part-1/ | |
import SwiftUI | |
struct MyTextPreferenceKey: PreferenceKey { | |
typealias Value = [MyTextPreferenceData] | |
static var defaultValue: [MyTextPreferenceData] = [] | |
static func reduce(value: inout [MyTextPreferenceData], nextValue: () -> [MyTextPreferenceData]) { | |
value.append(contentsOf: nextValue()) | |
} | |
} | |
struct MyTextPreferenceData: Equatable { | |
let viewIdx: Int | |
let rect: CGRect | |
} | |
struct ContentView : View { | |
@State private var activeIdx: Int = 0 | |
@State private var rects: [CGRect] = Array<CGRect>(repeating: CGRect(), count: 12) | |
var body: some View { | |
ZStack(alignment: .topLeading) { | |
RoundedRectangle(cornerRadius: 15).stroke(lineWidth: 3.0).foregroundColor(Color.green) | |
.frame(width: rects[activeIdx].size.width, height: rects[activeIdx].size.height) | |
.offset(x: rects[activeIdx].minX, y: rects[activeIdx].minY) | |
.animation(.easeInOut(duration: 1.0)) | |
VStack { | |
Spacer() | |
HStack { | |
MonthView(activeMonth: $activeIdx, label: "January", idx: 0) | |
MonthView(activeMonth: $activeIdx, label: "February", idx: 1) | |
MonthView(activeMonth: $activeIdx, label: "March", idx: 2) | |
MonthView(activeMonth: $activeIdx, label: "April", idx: 3) | |
} | |
Spacer() | |
HStack { | |
MonthView(activeMonth: $activeIdx, label: "May", idx: 4) | |
MonthView(activeMonth: $activeIdx, label: "June", idx: 5) | |
MonthView(activeMonth: $activeIdx, label: "July", idx: 6) | |
MonthView(activeMonth: $activeIdx, label: "August", idx: 7) | |
} | |
Spacer() | |
HStack { | |
MonthView(activeMonth: $activeIdx, label: "September", idx: 8) | |
MonthView(activeMonth: $activeIdx, label: "October", idx: 9) | |
MonthView(activeMonth: $activeIdx, label: "November", idx: 10) | |
MonthView(activeMonth: $activeIdx, label: "December", idx: 11) | |
} | |
Spacer() | |
}.onPreferenceChange(MyTextPreferenceKey.self) { preferences in | |
for p in preferences { | |
self.rects[p.viewIdx] = p.rect | |
} | |
} | |
}.coordinateSpace(name: "myZstack") | |
} | |
} | |
struct MonthView: View { | |
@Binding var activeMonth: Int | |
let label: String | |
let idx: Int | |
var body: some View { | |
Text(label) | |
.padding(10) | |
.background(MyPreferenceViewSetter(idx: idx)).onTapGesture { self.activeMonth = self.idx } | |
} | |
} | |
struct MyPreferenceViewSetter: View { | |
let idx: Int | |
var body: some View { | |
GeometryReader { geometry in | |
Rectangle() | |
.fill(Color.clear) | |
.preference(key: MyTextPreferenceKey.self, | |
value: [MyTextPreferenceData(viewIdx: self.idx, rect: geometry.frame(in: .named("myZstack")))]) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment