Skip to content
New issue

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

Flutter web deepLink #3057

Open
EDApps3 opened this issue Mar 19, 2024 · 4 comments
Open

Flutter web deepLink #3057

EDApps3 opened this issue Mar 19, 2024 · 4 comments
Assignees

Comments

@EDApps3
Copy link

EDApps3 commented Mar 19, 2024

i tried to achieve deep linking using GetX on android and it works fine,
Manifest :

 <!-- Deep linking -->
           <meta-data android:name="flutter_deeplinking_enabled" android:value="true" />
           <intent-filter android:autoVerify="true">
               <action android:name="android.intent.action.VIEW" />
               <category android:name="android.intent.category.DEFAULT" />
               <category android:name="android.intent.category.BROWSABLE" />
               <data android:scheme="http" />
               <data android:scheme="https" />
               <data android:host="fluttertutorialsandquizzes.com" />
               <data android:path="/" />
           </intent-filter>

GetMaterial :

 getPages: [
          GetPage(name: '/', page: () => const MainSplashScreen()),
        ],

by loading https://fluttertutorialsandquizzes.com/?categoryid=8 or https://fluttertutorialsandquizzes.com/?categoryid=8#/minified:Md on android the app knows the param but on web it is null

any idea?

@EDApps3
Copy link
Author

EDApps3 commented Mar 20, 2024

Getx5 solve the issue but had to disable the minify, url https://fluttertutorialsandquizzes.com/?category_id=8 works for both web and mobile

@fisforfaheem
Copy link

How to uae with get.named...also kindly do a full example

@laterdayi
Copy link

@fisforfaheem
Copy link

fisforfaheem commented Apr 3, 2024 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants