We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c734b2 commit 654f4f5Copy full SHA for 654f4f5
2 files changed
src/android/app/src/main/AndroidManifest.xml
@@ -16,6 +16,14 @@
16
the Android process has started. This theme is visible to the user
17
while the Flutter UI initializes. After that, this theme continues
18
to determine the Window background behind the Flutter UI. -->
19
+ <intent-filter>
20
+ <action android:name="android.intent.action.VIEW" />
21
+ <category android:name="android.intent.category.DEFAULT" />
22
+ <category android:name="android.intent.category.BROWSABLE" />
23
+ <data
24
+ android:scheme="taskapp"
25
+ android:host="login-callback" />
26
+ </intent-filter>
27
<meta-data
28
android:name="io.flutter.embedding.android.NormalTheme"
29
android:resource="@style/NormalTheme"
src/lib/features/auth/presentation/view/auth_gate.dart
0 commit comments