You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/ff-concepts/navigation-routing/deep-dynamic-linking.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -678,7 +678,7 @@ For a complete walkthrough, check out the tutorial video:
678
678
679
679
## Branch Deeplinking Library
680
680
681
-
If you don't want to implement the Branch Library from scratch, we have introduced the Branch Deep Linking Library that you can import from the Marketplace completely free.
681
+
If you’d prefer not to integrate Branch.io from scratch, we have introduced the **Branch Deep Linking Library** that you can import from the Marketplace completely free.
682
682
683
683
This library sets up everything you need for routing users into your app using Branch’s smart links — with native configuration, link handling, and deep link helpers already wired in.
684
684
@@ -694,18 +694,18 @@ This installs the library into your FlutterFlow account, and you can reuse it ac
To add it to a specific project, go to **Settings > Project Dependencies**, click Add Library, and search for Branch.
697
+
To add it to a specific project, go to **Settings > Project Dependencies**, click **Add Library**, and search for Branch.
698
698
699
699
### Branch Setup
700
700
701
701
You’ll need two values from your Branch dashboard:
702
702
703
-
- **Branch Live Key** – your production API key from the Branch dashboard
703
+
- **Branch Live Key** – your production API key from the Branch dashboard.
704
704
- **Custom Domain** – your configured link domain (e.g., yourapp.app.link)
705
705
This is the domain used to generate and handle smart links for your app.
706
706
707
707
We recommend storing these values in Environment Variables so you can:
708
-
- Manage them per environment (e.g. dev vs prod Branch keys)
708
+
- Manage them per environment (e.g., dev vs prod Branch keys).
709
709
- Easily assign them to the library’s configuration when adding it to a project.
710
710
711
711
**Adding Library Values**
@@ -865,9 +865,9 @@ The action accepts the following parameters:
865
865
866
866
- **`canonicalIdentifier`** – A unique path for the content (e.g. `/imageDetails/:id`). This becomes the key reference used when routing the user back into the app.
867
867
868
-
- **`title`** – The link's title (used in social previews or analytics)
868
+
- **`title`** – The link's title (used in social previews or analytics).
869
869
870
-
- **`description`** – (Optional) A short description of the content
870
+
- **`description`** – (Optional) A short description of the content.
871
871
872
872
- **`metadata`** – A dynamic map of custom parameters to include with the link
@@ -887,9 +887,9 @@ These functions help you safely work with deep link data, extract values, and co
887
887
888
888
- **`getLastPathSegmentFromMap(linkData, key)`** - Extracts the last path segment (e.g `abc123`) from a URI stored inside a link data field (e.g. `/imageDetails/abc123`). Useful for extracting the ID from a link.
889
889
890
-
- **`getLinkValue(linkData, key)`** : Safely retrieves any single value from the link data Map. Returns null if not found. (e.g retrieving `showPromo` attribute value from the `linkData`)
890
+
- **`getLinkValue(linkData, key)`** - Safely retrieves any single value from the link data Map. Returns null if not found. (e.g retrieving `showPromo` attribute value from the `linkData`).
891
891
892
-
- **`createLinkProperties(...)`** : Returns a Branch Link Properties map used when generating a smart link. You can define values like: feature, campaign, stage, channel, alias or tags or custom fallback URLs. Useful for organizing and tracking generated links for marketing or referrals.
892
+
- **`createLinkProperties(...)`** - Returns a Branch Link Properties map used when generating a smart link. You can define values like: feature, campaign, stage, channel, alias or tags or custom fallback URLs. Useful for organizing and tracking generated links for marketing or referrals.
0 commit comments