Flutter PayTabs SDK
Flutter PayTabs SDK is a wrapper for the native PayTabs Android and iOS SDKs, It helps you integrate with PayTabs payment gateway.
Flutter support:
x
iOSx
Android
Usage
Installation
Add flutter_paytabs_sdk
to your package's pubspec.yaml
file:
dependencies:
flutter_paytabs_sdk: ^1.0.1
Pay using credit card
- Import flutter_paytabs_sdk
import 'package:flutter_paytabs_sdk/flutter_paytabs_sdk.dart';
- Configure arguments
var args = {
pt_merchant_email: "test@example.com",
pt_secret_key: "BIueZNfPLblJnMmPYARDEoP5x1WqseI3XciX0yNLJ8v7URXTrOw6dmbKn8bQnTUk6ch6L5SudnC8fz2HozNBVZmh7w9uq4Pwg7D1",// Add your Secret Key Here
pt_transaction_title: "Mr. John Doe",
pt_amount: "2.0",
pt_currency_code: "USD",
pt_customer_email: "test@example.com",
pt_customer_phone_number: "+97333109781",
pt_order_id: "1234567",
product_name: "Tomato",
pt_timeout_in_seconds: "300", //Optional
pt_address_billing: "test test",
pt_city_billing: "Juffair",
pt_state_billing: "state",
pt_country_billing: "BHR",
pt_postal_code_billing: "00973", //Put Country Phone code if Postal code not available '00973'//
pt_address_shipping: "test test",
pt_city_shipping: "Juffair",
pt_state_shipping: "state",
pt_country_shipping: "BHR",
pt_postal_code_shipping: "00973", //Put Country Phone code if Postal
pt_color: "#cccccc",
pt_language: 'en', // 'en', 'ar'
pt_tokenization: true,
pt_preauth: false
};
- Start calling payment method and handle the transaction details
FlutterPaytabsSdk.startPayment(args, (event) {
List<dynamic> eventList = event;
Map firstEvent = eventList.first;
if(firstEvent.keys.first == "EventPreparePaypage") {
// TODO
// Here you can handle prepare events
} else {
// TODO
// Here you can handle transcation details
}
});
Prerequisites (iOS)
To complete the integration you need to set NSAllowsArbitraryLoads
to true under the section NSAppTransportSecurity
in your app info.plist
or add our domains as expection domains (contact our support team)
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
Demo application
Check our complete example here github.com/paytabscom/flutter_paytabs_sdk/tree/master/example.

License
See LICENSE.