Nick Sarno

Results 11 comments of Nick Sarno

> I improved the code by adding FirstRunManager, a singleton, to manage one-time execution logic. This ensures that certain actions only run on the first app launch. We use a...

Hey @Aelx-Vaiman Thanks for the updates here. I actually do not use this component any more and I only use native tabbars because they are more performant. You are more...

Hi @xqsadness I'm still not seeing how to reproduce this. You're saying to open the app and click "dismiss screen" 100x?

Hi, maybe it is a problem with your implementation? When I use the [Sample project](https://github.com/SwiftfulThinking/SwiftfulRoutingExample), I can dismissScreenStack multiple times and it is working as expected. Can you provide sample...

Thanks @edementiev for finding this bug and for the example project - it helped a lot. This is now fixed in release [5.3.5](https://github.com/SwiftfulThinking/SwiftfulRouting/releases/tag/5.3.5). Feel free to re-open this issue if...

I can make an update. How do you normally get it from Firebase auth?Sent from my iPhoneOn Jun 18, 2024, at 3:08 AM, Alireza Esfahani ***@***.***> wrote: Hi, Thanks for...

@gerchicov-vg It definitely does work. The weird iOS support would put iOS 16 in the iOS 14+ bucket. Therefore you should use version 5.3.6. The release is here: https://github.com/SwiftfulThinking/SwiftfulRouting/releases/tag/5.3.6 and...

The way to do it currently would be to keep the reference to the router for each view. If you call "dismissScreen" on View3's Router, it should dismiss both View3...

Added additional dismiss support, including "dismiss count" and "dismiss to id" in Version 6 (https://github.com/SwiftfulThinking/SwiftfulRouting/releases/tag/beta-6.1)

This is weird but it seems to work with .task instead of .onAppear. I'll look into this... ```swift .task { self.isSpinning = true } ```