stinsen
stinsen copied to clipboard
Coordinators in SwiftUI. Simple, powerful and elegant.
Hi everyone, First of all, thank you for the great framework. I have a question. Is it possible to present the modal view from tabbar item? If yes, how can...
Could you please add Carthage support apart from SPM and Cocoapods?
Refactors the main `Package.swift` for the expected use of a Swift Package: - Include `Sources` directory for code references - Remove redundant and not-even-accessible `Sources/Package.swift` - Ignore `.swiftpm` directory which...
Following the conversation on #28 I think that SplitView is a really common use case, I would love to see it built into Stinsen by default! 🥳 😄 I have...
In Xcode 12.4, Stinsen v2.0.9: Adding the library by CocoaPods or by SPM, but compilation failed in the NavigationViewCoordinator.swift Any ideas **except** updating the macOS? (I can fix the Stinsen's...
Reproduction steps: - present a view in a `NavigationCoordinatable` coordinator using `@Route(.fullScreen) var playback = playbackView` - the presented view asks for microphone permission that triggers presenting a system alert...
We have implemented `StateObject` into an app, as shown in the example below and we receive a lot of issues with the Coordinator such as crashes. The problems start to...
Consider an iOS SwiftUI project that has the following coordinator structure: ```text App MainCoordinator ContentViewCoordinator (@Root of MainCoordinator) SecondaryCoordinator (@Route(.fullScreen) from ContentViewCoordinator) ``` In iOS 14.4, performing `route(to:)` from ContentViewCoordinator...
I'm using` MacOS Ventura Beta with SwiftUI 4`. The problem is that Apple introduced `NavigationStack` in SwiftUI 4 and it conflicts with the `NavigationStack` from `stinsen` library. Hence i'm getting...
I have a root coordinator and multiple child coordinators, and i am trying to pass and @EnvironmentObject around to the child coordinators to pass it further to the child views...