Alexey Naumov

Results 166 comments of Alexey Naumov

Yeah, I see. I suspect the correct `find` behavior should be to continue the search in the `NavigationLinks`'s destination only if it is active. I'll look into a fix

Hey, this message says there is apparently an `AnnotationView` in your hierarchy, and not the `AnyView`. If that's your custom view, extend it in the tests file with `Inspectable` conformance:...

Here is the chain that gets to the first Shape: ```swift let shape = try subject.inspect().zStack().shape(0) ```

Feel free to reopen the ticket if the suggestion above did not help

Hey, that is correct, the `@Environment(\.presentationMode)`, along with the new `@Environment(\.isPresented)` and `@Environment(\.dismiss)` are not updated nor are observed by ViewInspector because it doesn't have access to the EnvironmentValues store....

Hey, I just tried calling `onChange` for the following test view: ```swift struct MyView: View, Inspectable { let val = "initial" var body: some View { NavigationView { Text("Hello") }.onChange(of:...

Found the bug and fixed it. Thank you for reporting! Until the fix is published, a workaround is to explicitly wrap the parameter in Optional. That is, instead of ```swift...

Released with v0.9.2

@leemaguire I did, though I don't set it to `none` as recommended and use `completeUntilFirstUserAuthentication` for privacy reasons. I consider changing protection to `none` a hack full of compromises, which,...

While there is no well-thought and finalized approach supported by the library, you can consider going the route suggested by @sisoje in [this repo](https://github.com/sisoje/testable-view-swiftui)