unipass_web_sdk 0.0.7 copy "unipass_web_sdk: ^0.0.7" to clipboard
unipass_web_sdk: ^0.0.7 copied to clipboard

A Flutter plugin that allows you using unipass with webview page.

A Flutter plugin that allows you using unipass with webview page.

Requirements #

  • Dart sdk: '>=2.18.1 <3.0.0'
  • Flutter: flutter: ">=2.5.0"

Installation #

Add unipass_web_sdk as a dependency in your pubspec.yaml file.

Usage #

interface #

/// interface declare
enum Environment { testnet, mainnet }

enum ChainType { polygon, bsc, rangers }

enum Protocol { https, http }

enum UnipassTheme { light, dark }

class AppSetting {
  String? appName;
  String? appIcon;
  UnipassTheme theme;
  ChainType chainType;

  AppSetting({this.appName, this.appIcon, required this.theme, required this.chainType});
}

class UniPassOption {
  String? nodeRPC;
  ChainType? chainType;
  Environment? env;
  String? domain;
  String? protocol;
  AppSetting? appSetting;

  UniPassOption({this.nodeRPC, this.chainType, this.env, this.domain, this.protocol, this.appSetting});
}

full creation example #

  UniPassWeb uniPassWeb = UniPassWeb(
    UniPassOption(
      dev: Environment.testnet,
      nodeRPC: "https://node.wallet.unipass.id/polygon-mumbai",
      domain: "testnet.wallet.unipass.id",
      protocol: "https",
      appSetting: AppSetting(
        appName: "demo dapp",
        appIcon: "",
        theme: UnipassTheme.dark,
        chainType: ChainType.polygon,
      ),
    ),
  );

For more information please visit demo project.

1
likes
110
pub points
3%
popularity

Publisher

verified publisherwallet.unipass.id

A Flutter plugin that allows you using unipass with webview page.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter, flutter_inappwebview, http, shared_preferences, web3dart

More

Packages that depend on unipass_web_sdk