flutter_khalti 0.3.0+2 copy "flutter_khalti: ^0.3.0+2" to clipboard
flutter_khalti: ^0.3.0+2 copied to clipboard

discontinuedreplaced by: khalti_flutter
outdated

A fluter plugin to process khalti payment

flutter_khalti #

Khalti SDK for flutter apps. Khalti Merchant can use this library to integrate the payment system in their system.

Setup #

Android #

No change is required, works out of the box.

IOS #

You have to add URL scheme to the project and send it as a parameter to the FlutterKhalti class as shown in the example code below.

Khalti scheme setup overview

How to use #

    FlutterKhalti(
      urlSchemeIOS: "KhaltiPayFlutterExampleScheme",
      publicKey: "test_public_key_eacadfb91994475d8bebfa577b0bca68",
      productId: "1233",
      productName: "Test 2",
      amount: 12121,
      customData: {
        "test": "asass",
      },
    ).initPayment(
      onSuccess: (data) {
        print("success");
        print(data);
      },
      onError: (error) {
        print("error");
        print(error);
      },
    );
11
likes
30
pub points
53%
popularity

Publisher

unverified uploader

A fluter plugin to process khalti payment

Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_khalti