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
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -89,7 +89,7 @@ In this step, You will set the URL scheme. To do that:
89
89

90
90
91
91
:::tip
92
-
We recommend enabling this option to increase user engagement with your app
92
+
We recommend enabling this option to increase user engagement with your app.
93
93
:::
94
94
95
95
#### 2. Setting page URL
@@ -521,17 +521,17 @@ Here's a short demo:
521
521
To make **Branch Smart Links** work in your FlutterFlow app, you’ll need to update the native configuration files via the **Custom Code** tab in your project.
522
522
523
523
1. First, create environment variables for:
524
-
-`branchHostUrl` (e.g. `brnch4.app.link`)
524
+
-`branchHostUrl` (e.g.,`brnch4.app.link`)
525
525
-`branchKey` (your Branch key, use it for production and optionally `branchKeyTest` for dev environments. You can toggle modes through Branch dashboard and also through FlutterFlow environment toggling).
526
526
527
527
2. Then navigate to, FlutterFlow > Custom Code > Configuration Files.
528
528
529
529
530
530
**🔧 Android Setup**
531
531
532
-
1. Create two variables in `AndroidManifest.xml` file named `branchKey` and `branchHostUrl` and bind it to the environment variables we earlier created.
532
+
1. Create two variables in `AndroidManifest.xml` file named `branchKey` and `branchHostUrl` and bind them to the environment variables we earlier created.
533
533
534
-
2. Add an `intent-filter` block to your **Main Activity** through the **Activity Tags hook**:
534
+
2. Add an `intent-filter` block to your **Main Activity** through the **Activity Tags** hook:
535
535
536
536
```xml
537
537
<intent-filterandroid:autoVerify="true">
@@ -555,15 +555,15 @@ To make **Branch Smart Links** work in your FlutterFlow app, you’ll need to up
555
555
556
556
1. In `Info.plist`, add a new variable called `branchKey` and bind it to the environment variable.
557
557
558
-
2. In `Info.plist`, add:
558
+
2. In `Info.plist`, add the following code snippet.
559
559
560
560
```xml
561
561
<key>branch_key</key>
562
562
<string>{{branchKey}}</string>
563
563
```
564
564
3. In `Runner.entitlements`, add a new variable called `branchHostUrl` and bind it to the environment variable.
565
565
566
-
4. In `Runner.entitlements`, add:
566
+
4. In `Runner.entitlements`, add the following code snippet.
3. Under Custom URI Scheme, match the URI host/domain to what’s defined in your Branch dashboard (e.g. `brnch4://` or `dreambrush://`).
586
+
3. Under Custom URI Scheme, match the URI host/domain to what’s defined in your Branch dashboard (e.g.,`brnch4://` or `dreambrush://`).
587
587
588
588

589
589
@@ -595,15 +595,15 @@ You're now ready to use Branch Smart Links in a FlutterFlow app with seamless de
595
595
To integrate Branch with your FlutterFlow app, you'll use the [`flutter_branch_sdk`](https://pub.dev/packages/flutter_branch_sdk) Dart package. This will allow your app to listen to Branch links and respond accordingly.
596
596
597
597
598
-
1. Go to your **FlutterFlow project > Pubspec Dependencies tab**, and add:
598
+
1. Go to your **FlutterFlow project > Settings and Integrations > Pubspec Dependencies** tab, and add the following dependency.
599
599
600
600
```js
601
601
flutter_branch_sdk:^5.0.1
602
602
```
603
-
(Use the latest version available from [pub.dev](https://pub.dev/packages/flutter_branch_sdk))
603
+
Make sure to use the latest version available from [pub.dev](https://pub.dev/packages/flutter_branch_sdk)
604
604
605
605
606
-
2. Create a Custom Action to initialize Branch SDK. This ensures the Branch session is set up when your app starts.
606
+
2. Create a Custom Action to initialize the Branch SDK. This ensures the Branch session is set up when your app starts.
0 commit comments