LNPopupController is a framework for presenting view controllers as popups of other view controllers, much like the Apple Music and Podcasts apps.
-
Updated
Feb 18, 2022 - Objective-C
Add a description, image, and links to the mac-catalyst topic page so that developers can more easily learn about it.
To associate your repository with the mac-catalyst topic, visit your repo's landing page and select "manage topics."
Is your feature request related to a problem? Please describe.
I've got multiple workflows in SwiftUI being presented at the same time. I'd like to abandon them all if a user is logged out. This is achievable in UIKit because you can just extract and use the data model. For example, I could've created multiple workflows and stored them somewhere, then just called abandon on them. However, bec