Dynamic Links in flutter | App Referral

Dynamic Links :

Supercharge Your Flutter App with Dynamic Links: Boost User Engagement Globally! Visit complete video playlist here.

Flutter Dynamic Links play a pivotal role in enhancing user engagement and facilitating seamless navigation within mobile applications.

These dynamic links empower developers to create a more personalized user experience by redirecting users to specific content or pages. In this comprehensive guide, we will delve into the intricacies of Flutter Dynamic Links, exploring their implementation and benefits.

Flutter dynamic links, we have already seen the implementation of these links in our previous tutorial and in this part of the tutorial we will be dealing with referral system implementation.

Referral system is the most important part of the popular e-commerce apps and we will be seeing how we can design this in our flutter app.

 

Why Dynamic Links ?

Reach users worldwide by creating links that adapt to their location and language preferences. Seamlessly connect with audiences from diverse countries and cultures.

 

Navigate Users

Design personalised user journeys with links. Direct users to specific content, promotions, or features based on their demographics, ensuring a bespoke experience for every visitor.

 

Improved app usage

Elevate your Flutter app’s reach and impact. These links empower you to connect, engage, and thrive in the ever-evolving landscape of mobile app development.

Unlock a world of possibilities for your app. Seamlessly navigate the global market with links – your gateway to a more connected and responsive user experience.

In this tutorial we are trying to send few parameters included through a link so here is the link which i have created https://onesignalpush.page.link/amplifyabhii

 

Social Media Sharing:

Uncover strategies for utilizing dynamic links to enhance social media sharing, allowing users to easily share specific content or experiences from your Flutter app.

 

Dynamic Links Video Tutorial :

In this part of the tutorial, I will be providing the detailed implementation and explanation through a video tutorial

 

pubspec.yaml :

Incorporate Firebase Core and Firebase Links into your project, ensuring you’re using the latest versions.

dependencies:
  flutter:
    sdk: flutter
  firebase_core: ^2.22.0
  firebase_dynamic_links: ^5.4.4

 

 

main.dart :

I have shared the complete code for the referral system implementation.

import 'package:flutter/material.dart';
import 'package:firebase_core/firebase_core.dart';
import 'package:firebase_dynamic_links/firebase_dynamic_links.dart';


void main() async{
  WidgetsFlutterBinding.ensureInitialized();
  await Firebase.initializeApp();

  var initialLink = await FirebaseDynamicLinks.instance.getInitialLink();
  handleLink(initialLink);

  FirebaseDynamicLinks.instance.onLink.listen((event) async {
    handleLink(event);
  });

  runApp(MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: Text("Firebase Referral"),),
        body: Center(
          child: Column(
            mainAxisAlignment: MainAxisAlignment.center,
            children: [
              Text("Welcome", style: TextStyle(fontSize: 20),),
              Text("")
            ],
          ),
        ),
      ),
    );
  }
}

void handleLink(PendingDynamicLinkData? data){
  if(data != null){
    Uri? uri = data.link;
    print(data);
    print(uri);
    if(uri != null){
      Map<String, String>? utmParameters = data.utmParameters?.cast<String, String>();
      print("UTM Source :${utmParameters?["utm_source"]}");
      print("UTM Medium :${utmParameters?["utm_medium"]}");
      print("UTM Campaign :${utmParameters?["utm_campaign"]}");
    }
  }
}

 

 

If you have any questions regarding this blog, please feel free to drop them in the comments section below. Stay tuned for more intriguing updates by following us, and don’t forget to share

More :

Also go through the detailed playlist tutorial.

 

#Flutter #DynamicLinks #MobileAppDevelopment #GlobalEngagement #ProgrammingMagic #UserRetention #DeepLinking #FirebaseDynamicLinks #AppOptimization #UserExperience

Show Buttons
Hide Buttons
Read previous post:
flutter app links
Flutter App Links

Flutter App Links : Flutter app links is the concept where you can redirect users directly to your app and...

Close