I've been using GetX for routing in my Flutter app for quite some time and it's been working great. However, I now have a requirement to implement deep linking using GoRouter. I'm not sure how to integrate GoRouter for deep linking while still maintaining my existing GetX-based routing system.
Here are some of the specific challenges I'm facing:
I'd appreciate any guidance or code samples that can help me achieve deep linking functionality in my Flutter app while continuing to use GetX for my existing routing needs.
Thanks in advance for your assistance!
Go through this package: uni_links
The below link can help you to gather more information. https://blog.logrocket.com/understanding-deep-linking-flutter-uni-links/
Note: The basic code level is the same for most of the state-management tools. Make sure you cover up the core functionality. Once it works properly, you can modify it according to your needs.