Skip to content

Commit 8c88f22

Browse files
Apply suggestions from code review
Co-authored-by: pinkeshmars <[email protected]>
1 parent 265486b commit 8c88f22

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/ff-concepts/navigation-routing/deep-dynamic-linking.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ For a complete walkthrough, check out the tutorial video:
678678
679679
## Branch Deeplinking Library
680680
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.
682682
683683
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.
684684
@@ -694,18 +694,18 @@ This installs the library into your FlutterFlow account, and you can reuse it ac
694694
695695
![branch-library-install.png](imgs/branch-library-install.png)
696696
697-
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.
698698
699699
### Branch Setup
700700
701701
You’ll need two values from your Branch dashboard:
702702
703-
- **Branch Live Key** – your production API key from the Branch dashboard
703+
- **Branch Live Key** – your production API key from the Branch dashboard.
704704
- **Custom Domain** – your configured link domain (e.g., yourapp.app.link)
705705
This is the domain used to generate and handle smart links for your app.
706706
707707
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).
709709
- Easily assign them to the library’s configuration when adding it to a project.
710710
711711
**Adding Library Values**
@@ -865,9 +865,9 @@ The action accepts the following parameters:
865865
866866
- **`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.
867867
868-
- **`title`** – The link's title (used in social previews or analytics)
868+
- **`title`** – The link's title (used in social previews or analytics).
869869
870-
- **`description`** – (Optional) A short description of the content
870+
- **`description`** – (Optional) A short description of the content.
871871
872872
- **`metadata`** – A dynamic map of custom parameters to include with the link
873873
(e.g. page: "imageDetails", imageRef: "abc123", etc.)
@@ -887,9 +887,9 @@ These functions help you safely work with deep link data, extract values, and co
887887
888888
- **`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.
889889
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`).
891891
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.
893893
894894
895895

0 commit comments

Comments
 (0)