Calling asynchronous Firebase APIs from Swift
Callbacks, Combine, and async/await

Search for a command to run...
Articles tagged with #firebase
Callbacks, Combine, and async/await

This article is part of a series of articles that explores building a real-world application using SwiftUI, Firebase, and a couple of other technologies. Here is an overview of the series and what we're building: In part 1 of the series, we focussed...

For the longest time, iOS developers have used UIApplicationDelegate to handle application startup and other lifecycle events in their apps. At WWDC 2020, Apple made some significant changes to how apps participate in the application lifecycle. In t...

Previously in this series of articles about SwiftUI and Firebase, we talked about fetching data from Cloud Firestore and how to map from Firestore documents to Swift structs using Swift's Codable API. You might recall that we also introduced a way t...

Last time, we looked at how to connect a SwiftUI app to a Firebase project and synchronise data in real time. If you take a look at the code we used for mapping from Firestore documents to our Swift model structs, you will notice that is has a number...

SwiftUI is an exciting new way to build UIs for iOS and Apple's other platforms. By using a declarative syntax, it allows developers to separate concerns and focus on what's relevant. As with everything new, it sometimes takes a while to get used to...
