Dariusz Rybicki
Dariusz Rybicki
As reported by [@anfriis](https://github.com/anfriis) in an [issue to `xcframework-maker`](https://github.com/darrarski/xcframework-maker/issues/2), the `arm64-to-sim` does not work with [LoginWithAmazon iOS framework](https://amzndevresources.com/login-with-amazon/sdk/LoginWithAmazon_iOS.zip). I checked the [origin implementation](https://github.com/bogo/arm64-to-sim) of this fork, but it can't "hack"...
`JGTransitionCollectionView` has strong reference to `JGTransitionCollectionViewDatasource` object in `jgDatasource` property. It could cause retain cycle issue.
When snapshot testing iOS views I am using display scale trait depending on the device which layout I am using: ```swift assertSnapshot( matching: /* SwiftUI.View */, as: .image( layout: .device(config:...
Imagine you want to snapshot-test a single `UIViewController` on multiple devices. You can do it like this: ```swift assertSnapshots(matching: viewController, as: [ .image(on: .iPhoneSe), .image(on: .iPhone8), .image(on: .iPhoneX) ]) ```...
When snapshot testing views on macOS recorded image size depends on the main display of the machine on which tests are run. Example: - I want to snapshot NSView of...
I wonder if it's possible to deploy Swift-Express based app to [Heroku](https://www.heroku.com/). I have seen some people trying to do so using [Vapor](https://github.com/qutheory/vapor), and they [succeeded](https://github.com/LoganWright/swift-server-io). It would be nice...
I am not sure if it's possible, but it would be nice to be able to use `ObservableArray` as a replacement for Swift Array type, without publicly exposing the `ObservableArray`...
## What was done - Updated the code so the issue #2 can be reproduced. - Updated ComposableArchitecture dependency. - Added `TabsViewState` to prevent unneeded updates of the `TabsView`. -...
## Description Reported by @saroar in a [comment to another issue](https://github.com/darrarski/swift-composable-app-example/issues/1#issuecomment-817825416). ## Steps to reproduce 1. Add `onAppear` actions to each component. 2. Send the `onAppear` action to the `ViewStore`...
### Steps to reproduce: - start demo project in iPhone 5 Simulator with iOS 8.2 - make sure screen is scrolled to the very top - tap `+` button on...