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

discontinued
outdated

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

flutter_kin_sdk #

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

Unofficial Kin SDK plugin written in Dart for Flutter.

Usage #

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

dependencies:
  flutter_kin_sdk: '^0.0.1'

Initializing #

import 'package:flutter_kin_sdk/flutter_kin_sdk.dart';

// Generate jwt_token and all jwt by yourself and setting in the plugin to have a response
// true - initializing balance observer
await FlutterKinSdk.kinStart(jwt_token, true);

Receivers #

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

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

// Receive all info and error messages from plugin
FlutterKinSdk.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
FlutterKinSdk.kinEarn(jwt);

// A custom Spend offer allows your users to unlock unique spend opportunities
// that you define within your app
FlutterKinSdk.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
FlutterKinSdk.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 SDK plugin to use offers features and launch Kin Marketplace.

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_kin_sdk