We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After writing is complete, I want to close the screen and receive a new list.
Structure
MainCoordinator |- MainTabFeature |-PostListFeature |- ComposeCoordinator |-ComposeFeature |- Notification
After the ComposeFeature task is completed, I want to update the post list status of the PostListFeature, but the view is not updated.
Currently, we are using a method of initializing the path by pulling up the state.
case .router(.routeAction(_, action: .composeEdit(.compose(.cancleButtonTapped)))): return .send(.mainTab(.postList(.listUpdate))) case let .mainTab(.postList(.postListResponse(response))): state.mainTab.postList.posts = response state.isPresentedSheet = false state.routes = [.root(.mainTab(state.mainTab))] return .none
I'm a beginner at TCA I would appreciate it if you could provide a better way.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
After writing is complete, I want to close the screen and receive a new list.
Structure
After the ComposeFeature task is completed, I want to update the post list status of the PostListFeature, but the view is not updated.
Currently, we are using a method of initializing the path by pulling up the state.
I'm a beginner at TCA I would appreciate it if you could provide a better way.
The text was updated successfully, but these errors were encountered: