play_install_referrer 0.5.0 copy "play_install_referrer: ^0.5.0" to clipboard
play_install_referrer: ^0.5.0 copied to clipboard

PlatformAndroid

A Flutter plugin for the Android Play Install Referrer API. You can use it to securely retrieve referral content from Google Play.

example/lib/main.dart

import 'dart:async';

import 'package:flutter/material.dart';
import 'package:play_install_referrer/play_install_referrer.dart';

void main() => runApp(MyApp());

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

  @override
  MyAppState createState() => MyAppState();
}

class MyAppState extends State<MyApp> {
  String _referrerDetails = '';

  @override
  void initState() {
    super.initState();
    initReferrerDetails();
  }

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initReferrerDetails() async {
    String referrerDetailsString;
    // Platform messages may fail, so we use a try/catch PlatformException.
    try {
      ReferrerDetails referrerDetails =
          await PlayInstallReferrer.installReferrer;

      referrerDetailsString = referrerDetails.toString();
    } catch (e) {
      referrerDetailsString = 'Failed to get referrer details: $e';
    }

    // If the widget was removed from the tree while the asynchronous platform
    // message was in flight, we want to discard the reply rather than calling
    // setState to update our non-existent appearance.
    if (!mounted) return;

    setState(() {
      _referrerDetails = referrerDetailsString;
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: const Text('Plugin example app')),
        body: Center(child: Text('Referrer Details: $_referrerDetails')),
      ),
    );
  }
}
5
likes
160
points
7.63k
downloads

Publisher

verified publisherchunkytofustudios.com

Weekly Downloads

A Flutter plugin for the Android Play Install Referrer API. You can use it to securely retrieve referral content from Google Play.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-2-Clause (license)

Dependencies

flutter

More

Packages that depend on play_install_referrer

Packages that implement play_install_referrer