Replies: 1 comment
-
Hi @innoreq, the complication is with the So, the problem exists in vanilla SwiftUI too. However, vanilla SwiftUI does have a tool to help with coupling, and that's Now, TCA can't leverage
Both of those approaches allow you to achieve feature decoupling in the navigation stack. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Good morning,
I'm struggling with the following problem and would like to know if this is already identified elsewhere, and if there are solutions for it.
When using
NavigationStackStore
andPath
, like here:https://github.com/pointfreeco/episode-code-samples/blob/main/0246-tca-tour-pt4/Standups/Standups/StandupsList.swift
in combination with packages, a problem is raised:
AppFeature
could be separated in an own package, as well as the subordinateListFeature
, which may be a different package with itsDetail
.AppFeature
defines thePath
that is used by the subordinate feature.This means: When the app is separated into packages for each feature, the
NavigationStackStore
cannot be used currently.Any ideas hereon?
Beta Was this translation helpful? Give feedback.
All reactions