-
I am trying to use NavLink link this .background(
NavigationLink(
destination: IfLetStore(
self.store.scope(
state: \.hangoutFormState,
action: Hangouts.Action.hangoutForm
)
) {
EventFormView(store: $0)
},
isActive: viewStore.binding(
get: \.isHangoutNavigationActive,
send: Hangouts.Action.hangoutFormView(isNavigate:)
)
) {}
) but getting error TCA version 0.47.2 |
Beta Was this translation helpful? Give feedback.
Answered by
saroar
Dec 21, 2022
Replies: 1 comment
-
so I found issue when I use this |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
saroar
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
so I found issue when I use this
send: Hangouts.Action.init
to my WithViewStore SwiftUI body I have to use like thissend: { .hangoutFormView(isNavigate: $0) }