Reputation: 1312
The browser based app of my flutter app is already active and has tons of email campaigns etc setup, with CTAs pointing to specific URLs of the website. I would now like to setup deep links such that all these URLs of my website lead to a specific screen in the flutter app. The problem: to be as userfriendly as possible for the web, our web URLs are all translated, e.g.:
https://example.org/en/about-us https://example.org/de/ueber-uns
Now no matter how hard I search for it on the internet, I can‘t find a flutter package that lets you point multiple deep link paths to the same screen in an easy way. Even when searching for stuff like ios universal links for translated URLs, I can‘t find anything useful.
So I wondered, is there a problem with using translated URLs as deep links, hence multiple URLs pointing to the same screen? I thought that, if you already have a browser based app, deep link URLs should mirror your website URLs for whom there‘s a corresponding screen in the app, no?
A simple regex-based deep linking solution should do the trick, yet I can‘t find anything in that sense in flutter either?
Upvotes: 0
Views: 20