Alexey Naumov
Alexey Naumov
Hey @johnrnyquist could you share which os version and device you were using?
Just launched tests on SE 2gen iOS 14.4, - no such error. Please consider re-testing the most recent code from the repo using the latest Xcode
Hey Jeremy! That’s a great question! It is theoretically possible to abstract access to every framework used by the app, but most likely this will be overkill. I tend to...
Hey @mohammad19991 , thanks for the heads up! Not sure if I understood the case fully, here is the recap of the mechanics to make sure we're on the same...
Gotcha. That's an easy fix then: ```swift extension Binding where Value: Equatable { typealias ValueClosure = (Value) -> Void func onSet(_ perform: @escaping ValueClosure) -> Self { return .init(get: {...
Hey, yep, I'll have a look, thanks for composing a sample!
Hey @mohammad19991 , I've done some experiments based on the points you've made. To fully understand what's going on I was adding `init` with `print` to see when the views...
Hey, > How and when do you reset your routing states? If we're talking about a real "reset" of the state, there is [one place](https://github.com/nalexn/clean-architecture-swiftui/blob/master/CountriesSwiftUI/UI/Screens/ContentView.swift#L38) I do this to essentially...
Ok, after a quick glance I think you should remove `NavigationLink` here and leave just the `Button`: ```swift NavigationLink(destination: AuthenticationView(), isActive: routingBinding.shouldNavigateToAuthetication) { Button { logout() } label: { Image(systemName:...
Ok, then if you actually need to show another AuthenticationView and not pop back to the original, the second one has to rely on separate routing parameters. Introduce a secondary...