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

discontinued
outdated

A flutter Kin Ecosystem SDK plugin to use offers features and launch Kin Marketplace.

flutter_kin_ecosystem_sdk #

A flutter Kin Ecosystem SDK plugin to use offers features and launch Kin Marketplace.

Unofficial Kin Ecosystem SDK plugin written in Dart for Flutter.

Usage #

To use this plugin, add flutter_kin_ecosystem_sdk as a dependency in your pubspec.yaml file.

dependencies:
  flutter_kin_ecosystem_sdk: '^0.1.0'

Initializing #

import 'package:flutter_kin_ecosystem_sdk/flutter_kin_ecosystem_sdk.dart';

// Generate jwt_token and all jwt by yourself and setting in the plugin to have a response
//userID - your application unique identifier for the user
//appID - your application unique identifier as provided by Kin.
// true - initializing balance observer
// true - production mode (false - playground)
await FlutterKinEcosystemSdk.kinStart(jwt_token, userId, appId, true, true);

Receivers #

To receive some changes in plugin you can use such ones:

// Receive balance scream and get all balance changes
FlutterKinEcosystemSdk.balanceStream.receiveBroadcastStream().listen((balance) {
    print(balance);
});

// Receive all info and error messages from plugin
FlutterKinEcosystemSdk.infoStream.receiveBroadcastStream().listen((jsonStr) {
    print(jsonStr);
});

Some methods #

// A custom Earn offer allows your users to earn Kin
// as a reward for performing tasks you want to incentives,
// such as setting a profile picture or rating your app
FlutterKinEcosystemSdk.kinEarn(jwt);

// A custom Spend offer allows your users to unlock unique spend opportunities
// that you define within your app
FlutterKinEcosystemSdk.kinSpend(jwt);

// A custom pay to user offer allows your users to unlock
// unique spend opportunities that you define
// within your app offered by other users
FlutterKinEcosystemSdk.kinPayToUser(jwt);

Installation #

Android and iOS #

No configuration required - the plugin should work out of the box.

0
likes
0
pub points
0%
popularity

Publisher

unverified uploader

A flutter Kin Ecosystem SDK plugin to use offers features and launch Kin Marketplace.

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_kin_ecosystem_sdk