-
I am trying to find the best way for me to do navigation in my TCA 1.0 project. I stumbled over |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @appfrosch, The guidance for using |
Beta Was this translation helpful? Give feedback.
Hi @appfrosch,
NavigationLinkStore
has the same deprecation level asNavigationLink(isActive:)
because it usesNavigationLink(isActive:)
under the hood. That is how it has been since its first introduction and was not changed in 1.0.The guidance for using
NavigationLink
in a TCA app is the same as in a vanilla app. If you can target iOS 16 then you are encouraged to use the newer navigation tools, such asNavigationStack
. If you don't need to use iOS 16, then targeting iOS 15 or lower will get rid of the deprecation warning.