Skip to content

Instantly share code, notes, and snippets.

View winstondu's full-sized avatar

Winston Du winstondu

  • Backbone
View GitHub Profile
@winstondu
winstondu / DemoView.swift
Created November 1, 2024 21:54 — forked from JoshHrach/DemoView.swift
UIViewRepresentable Sample Code
struct ThirdPartyDemoView: View {
@State private var shouldAdd = true
@State private var currentValue = 0
var body: some View {
ThirdPartyReader { proxy in
Text("\(currentValue)")
ThirdPartyView(shouldAdd: shouldAdd)
.viewChangedValueTo { view, newValue in
currentValue = newValue