Replies: 1 comment 1 reply
-
Hi @bunnyhero, when I paste this code into a project I do not see any perception warnings. Can you provide a minimal project that demonstrates the behavior you are seeing? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm not sure if this is an issue or if it's working as expected.
This code, using TCA 1.8, and targeting iOS 16 + 17, results in the "Perceptible state was accessed but is not being tracked" runtime warning, even though the single access to the bindable
store
is wrapped inWithPerceptionTracking
. I can make the warning go away if I throw an additionalWithPerceptionTracking
inside theGeometryReader
, even though the GeometryReader's contents have no references to anything Perceptible.I can also make the warning go away if I change the order of the
TextField
and theGeometryUser()
.Is this a false alarm? Thanks for any insight.
Beta Was this translation helpful? Give feedback.
All reactions