Skip to content

Commit 503f891

Browse files
hannah-hyjsfshaza2
andcommitted
Update src/content/cookbook/navigation/set-up-universal-links.md
Update src/content/ui/navigation/deep-linking.md Update src/content/cookbook/navigation/set-up-universal-links.md Update src/content/cookbook/navigation/set-up-app-links.md Update src/content/cookbook/navigation/set-up-app-links.md Update src/content/cookbook/navigation/set-up-app-links.md Co-Authored-By: Shams Zakhour (ignore Sfshaza) <44418985+sfshaza2@users.noreply.github.com>
1 parent f265ffd commit 503f891

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

src/content/cookbook/navigation/set-up-app-links.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,15 +98,15 @@ It provides a simple API to handle complex routing scenarios.
9898
```
9999
100100
:::note
101-
If you uses the third-party plugins to handle deep links,
101+
If you use a third-party plugin to handle deep links,
102102
such as [app_links][],
103103
Flutter's default deeplink handler will
104104
break these plugins.
105105
106-
Add this metadata tag
106+
To opt out of using Flutter's default deep link handler,
107+
add the following metadata tag:
107108
```<meta-data android:name="flutter_deeplinking_enabled" android:value="false" />```
108109
to opt out of Flutter's default deeplink handler
109-
if you prefer to use third-party plugins.
110110
:::
111111

112112
## 3. Hosting assetlinks.json file

src/content/cookbook/navigation/set-up-universal-links.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,13 @@ It provides a simple API to handle complex routing scenarios.
8383
Flutter project's `ios` folder.
8484

8585
:::note
86-
If you are using the third-party plugins to handle deep links,
86+
If you are use a third-party plugins to handle deep links,
8787
such as [app_links][],
8888
Flutter's default deeplink handler will
8989
break these plugins.
9090

91-
Add A Key and Value pair `FlutterDeepLinkingEnabled` and `NO` to info.Plist
92-
if you prefer to use third-party plugins.
91+
If you use a third-party plugin,
92+
add the key and value pair `FlutterDeepLinkingEnabled` and `NO` to info.Plist.
9393
:::
9494

9595
### Add associated domains

src/content/ui/navigation/deep-linking.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ To get started, see our cookbooks for Android and iOS:
6060
If you have written a plugin to handle deep links, as described in
6161
[Deep Links and Flutter applications][plugin-linking]
6262
(a free article on Medium),
63-
You should opt out the default flutter deep links handler by adding
64-
`FlutterDeepLinkingEnabled` to false in `Info.plist` or
65-
`flutter_deeplinking_enabled` to false in `AndroidManifest.xml`, respectively.
63+
you should opt out the Flutter's default deep link handler.
64+
To do this, set `FlutterDeepLinkingEnabled` to false in `Info.plist` _or_
65+
`flutter_deeplinking_enabled` to false in `AndroidManifest.xml`.
6666

6767
## Behavior
6868

0 commit comments

Comments
 (0)