John Patrick Morgan

Results 83 comments of John Patrick Morgan

Thanks everyone for your efforts and insights so far. I agree it would make sense to remove this library's dependency on `FlowStacks` now. I've played with that approach but haven't...

Hi @silverfoxlabs, thanks for raising this issue. Sadly `NavigationLink` doesn't offer a way to override its action, and `Button` doesn't offer a way to style it like a `NavigationLink`, so...

Thanks @dannyhertz - I'll try and get a reproduction and figure out what's happening. In the meantime, regarding your first update, I suspect this behaviour is because the `NavigationLink` bindings...

Hi @dannyhertz, sorry for the delay in following up. I've been playing around and haven't yet reproduced the crash, but have seen the spurious `.onAppear` closures firing as you described,...

@dannyhertz I looked further into `onAppear` being called unexpectedly, and was able to [reproduce the problem in vanilla SwiftUI](https://gist.github.com/johnpatrickmorgan/12e98d244a195a21cda7ea1af1048e9e), so I think this is a SwiftUI bug: Example code: Unexpected...

Thanks for raising this issue. Out of interest, which SDK is it? I don't see a good way to resolve the issue in this library, but I can see ways...

Thanks for raising this issue @CorbinMontague ! To update you, I can reproduce the bug, but I'm not yet sure why it's happening.

> hmm I'm seeing some kind of hang when using UseNavigationStackPolicy.whenAvailable and attempting to push additional views from within my modal so I assume I'm starting to hit some of...

Hi @DeanFs , thanks for raising this issue. It's possible to detect dismissals by adding an `onChange` modifier, e.g.: ```swift .onChange(of: routes) { [oldRoutes = routes] newRoutes in let dismissedRoutes...