SwiftUI-Redux icon indicating copy to clipboard operation
SwiftUI-Redux copied to clipboard

Sample iOS project built by SwiftUI + Redux(ReSwift) and Combine framework using GitHub API

Results 1 SwiftUI-Redux issues
Sort by recently updated
recently updated
newest added

the call `APIService().response(from: SearchRepositoryRequest())` and ` action.future .receive(on: DispatchQueue.main) .sink(receiveValue: { next($0) })` should be `subscription = APIService().response(from: SearchRepositoryRequest())` ` subscription = action.future .receive(on: DispatchQueue.main) .sink(receiveValue: { next($0) })` if...