Thank you for the wonderful Coordinator library. I am having an issue related to deeplink chain.
The issue is that the deeplink only runs to the MarketsRoute route, while the StockMarketRoute does not execute.
return .multiple(
.dismissToRoot(),
.popToRoot(),
deepLink(AppRoute.home, HomeRoute.markets, MarketsRoute.stocks, StockMarketRoute.counterDetail)
)
I will explain a little bit about the Coordinator in the demo project. HomeTabCoordinator is a tab bar controller that contains 3 tabs: NewsCoordinator, MarketsCoordinator, UsersCoordinator. MarketsCoordinator is a page view controller that has 2 pages: StockMarketCoordinator and UTMarketCoordinator.
Can you help me identify where the problem is?
Thank you for the wonderful Coordinator library. I am having an issue related to deeplink chain.
The issue is that the deeplink only runs to the MarketsRoute route, while the StockMarketRoute does not execute.
I will explain a little bit about the Coordinator in the demo project. HomeTabCoordinator is a tab bar controller that contains 3 tabs: NewsCoordinator, MarketsCoordinator, UsersCoordinator. MarketsCoordinator is a page view controller that has 2 pages: StockMarketCoordinator and UTMarketCoordinator.
Can you help me identify where the problem is?