Alexey Naumov
Alexey Naumov
Hm, an interesting bug. I've tried to replicate it with no luck. Glitches in the navigation bar are unfortunately quite common in SwiftUI, but you're right, search bar might also...
Hey @pnghai For now, I'm thinking that support for iOS 13 overweights the benefits of migrating the app delegate. Its current revision is extremely minimal, with all the business logic...
Hey, feel free to open a PR for that, great idea!
I'd only picked a more verbose name for `func find(_ id: String)` to not be confused with other modifiers, including `find(viewWithId:)`. Maybe `find(viewWithAccessibilityId:)` ?
Hey @Cobrijani Thank you for the feedback! Regarding your question, the state management in SwiftUI always complies with the "single source of truth" principle, so you'll need to choose the...
Ok, the `Child` should consume the `Binding` in the init: ```swift struct Child { @Binding var value: Int init(value: Binding) { self._value = value } } ``` And you should...
These are great questions @teemobean , I apologize for not providing the answers yet, as they need quite some time investment, which I currently cannot afford. Stay tuned!
You're likely to have another struct or class `Builder` in your project, as per [this similar case](https://stackoverflow.com/a/65749230/2923345).
Hey @faris-mobile89 If you need to access the AppState from the UI layer - you use @Environment injection of DI container, which carries the reference to the AppState. The business...
This is hard to advise having just this diagram on hands. In my experience, when we had to break down the project into frameworks, it'd grow horizontally, not vertically. I...