flutter_paxful_pay

Creator: coderz1093

Last updated:

0 purchases

flutter_paxful_pay Image
flutter_paxful_pay Images
Add to Cart

Description:

flutter paxful pay

flutter_paxful_pay #

This package helps you generate PaxFul Pay URLs with parameters, and additionally opens a WebView to the generated URL for payment..
Features #

Generate PAXFul Pay URLs with parameters, See PaxFulPay Documentation
Opens a WebView to the generated URL for payment

Getting started #
Add the below to your pubspec.yaml file.
dependencies:
flutter_paxful_pay: ^0.0.5
copied to clipboard
and import with
import 'package:flutter_paxful_pay/flutter_paxful_pay.dart';
copied to clipboard
Usage #
To open the payment web view directly with parameters, use the following:
import 'package:flutter_paxful_pay/flutter_paxful_pay.dart';

String paymentURL = FlutterPAXFulPay.openWebView(
context: context, // Build Context.
apiKey: "ABCDEFGHIJKLMNOPQRSTUVWXYZ", // Change.
merchantId: "abc", // Change.
to: "BTC_ADDRESS", // Change.
secret: "secret", // Change.
trackId: "uuid", // Unique ID for all transactions... Used for tracking on your backend...
saveAddress = true,
amount: 0.005, // BTC amount.
);
copied to clipboard
NB: You can prompt to pay BTC or FIAT. For BTC, the example above will suffice. For FIAT, you will need to omit the amount argument and provide the fiatAmount and fiatCurrency arguments instead. If you provided amount, fiatAmount, and fiatCurrency all together, amount will be ignored.
Your app will navigate to a new page/route with a webview as shown below.

To generate BTC payment URLs, use the following:
import 'package:flutter_paxful_pay/flutter_paxful_pay.dart';

String paymentURL = FlutterPAXFulPay.generatePaymentURL(
apiKey: "ABCDEFGHIJKLMNOPQRSTUVWXYZ", // Change.
merchantId: "abc", // Change.
to: "BTC_ADDRESS", // Change.
secret: "secret", // Change.
trackId: "uuid", // Unique ID for all transactions... Used for tracking on your backend...
saveAddress = true,
amount: 0.005, // BTC amount. Min is 0.0004 from PaxFul.
);
copied to clipboard
To Generate FIAT payment URLs, use the following:
import 'package:flutter_paxful_pay/flutter_paxful_pay.dart';

String paymentURL = FlutterPAXFulPay.generatePaymentURL(
apiKey: "ABCDEFGHIJKLMNOPQRSTUVWXYZ", // Change.
merchantId: "abc", // Change.
to: "BTC_ADDRESS", // Change.
secret: "secret", // Change.
trackId: "uuid", // Unique ID for all transactions... Used for tracking on your backend...
saveAddress = true,
fiatAmount: 70, // FIAT amount.
fiatCurrency: "USD", // FIAT currency.
);
copied to clipboard
Additional information #
For a practical example, see the package example section.
Contributing #
Pull requests are welcome.
Send pull requests to the develop branch.
For major changes, please open an issue first to discuss what you would like to change.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.