flinku_sdk 0.1.0 copy "flinku_sdk: ^0.1.0" to clipboard
flinku_sdk: ^0.1.0 copied to clipboard

The official Flutter SDK for Flinku — deferred deep linking for iOS and Android. Firebase Dynamic Links replacement.

flinku_sdk #

The official Flutter SDK for Flinku, providing deferred deep linking for iOS and Android.

Features #

  • Deferred deep linking support for iOS and Android
  • Firebase Dynamic Links replacement path
  • Simple Flutter-first integration

Installation #

Add flinku_sdk to your pubspec.yaml:

dependencies:
  flinku_sdk: ^0.1.0

Then run:

flutter pub get

Basic Usage #

import 'package:flinku_sdk/flinku_sdk.dart';

Future<void> initFlinku() async {
  await Flinku.configure(
    FlinkuConfig(
      apiKey: 'fku_live_your_key',
      debugMode: true,
    ),
  );

  final link = await Flinku.match();
  if (link.matched) {
    // Navigate using link.deepLink
  }
}
0
likes
0
points
201
downloads

Publisher

unverified uploader

Weekly Downloads

The official Flutter SDK for Flinku — deferred deep linking for iOS and Android. Firebase Dynamic Links replacement.

Homepage
Repository (GitHub)
View/report issues

Topics

#deep-linking #firebase #deferred-deep-linking #dynamic-links

License

unknown (license)

Dependencies

flutter, http, shared_preferences

More

Packages that depend on flinku_sdk