Alexey Naumov
Alexey Naumov
I'm not sure that I faced the same problem as you, but I've solved mine by setting round values to contentInsets of the tableView. For example instead of float value...
Ok, I just got it working with `launchd`. I'm not able to write a detailed guide right now, but I hope you can google each step for details. 1. Create...
Ok, I'll look into that. Curious to hear your general feedback on using the library for the watch app though!
Hey, in your specific case you can get to the `Text` using this chain: ```swift let text = try sut.inspect().list().outlineGroup(0).leaf(Bookmark.example1).text(1) ``` I do find this quite verbose and unintuitive, I'll...
Hey, you cannot host views asynchronously and nest `inspect` calls, that's why the second closure doesn't work. I'd recommend you breaking down this test into two, where there is a...
Ok, depending on the state management between the parent and child views there could be two variations, where you either will or will not have access to updated child view...
@SubbuEkincare You can refer to a few of my articles [referenced](https://github.com/nalexn/clean-architecture-swiftui#articles-related-to-this-project) in the readme, I'm afraid the extensive documentation for every single entity in the project is not coming any...
Possibly a SwiftUI 2.0 change. Could you try running this on iOS 13?
These warnings cannot be ignored, we should find the cause. I can assume you have some code in your project that updates the AppState while the view is being rendered:...
Yeah, I was hoping programmatic navigation will become less buggy with the iOS update, but it looks like things got only worse. I'll experiment more with your commit and try...