pay_with_paymob 1.1.1 copy "pay_with_paymob: ^1.1.1" to clipboard
pay_with_paymob: ^1.1.1 copied to clipboard

A Flutter package for integrating pay_with_paymob services, enabling Visa and mobile wallet payments with customizable UI and secure payment processing.

paymob_payment #

A Flutter package that simplifies the integration of pay_with_paymob gateway for Visa and mobile wallet payments.

Features #

  • Easy integration with Paymob's payment system.
  • Support for multiple payment methods: Visa and mobile wallets.
  • Customizable payment view with style options.
  • User data collection for payments.
  • Callbacks for payment success and error handling.

Getting started #

Prerequisites #

  • Flutter SDK installed on your machine.
  • A Paymob account to get your API key and other necessary credentials.

Installation #

Add the following line to your pubspec.yaml file:

dependencies:
  paymob_payment: ^1.0.0  

Usage #

Initializing Payment Data #

Before using the payment functionality, initialize your payment data (preferably in the main function):

PaymentData.initialize(
  apiKey: "Your Api key", // (Required) getting it from dashboard Select Settings -> Account Info -> API Key
  iframeId: "", // (Required) getting it from paymob Select Developers -> iframes
  integrationCardId: "", // (Required) getting it from dashboard Select Developers -> Payment Integrations -> Online Card ID
  integrationMobileWalletId: "", // (Required) getting it from dashboard Select Developers -> Payment Integrations -> Mobile Wallet ID
  
  // Optional User Data
  userData: UserData(
    email: "User Email", // (Optional) Email | Default: 'NA'
    phone: "User Phone", // (Optional) Phone | Default: 'NA'
    firstName: "User First Name", // (Optional) First Name | Default: 'NA'
    lastName: "User Last Name", // (Optional) Last Name | Default: 'NA'
  ),
  
  // Optional Style
  style: Style(
    primaryColor: Colors.blue, // (Optional) Default: Colors.blue
    scaffoldColor: Colors.white, // (Optional) Default: Colors.white
    appBarBackgroundColor: Colors.blue, // (Optional) Default: Colors.blue
    appBarForegroundColor: Colors.white, // (Optional) Default: Colors.white
    textStyle: TextStyle(), // (Optional) Default: TextStyle()
    buttonStyle: ElevatedButton.styleFrom(), // (Optional) Default: ElevatedButton.styleFrom(...)
    circleProgressColor: Colors.blue, // (Optional) Default: Colors.blue
    unselectedColor: Colors.grey, // (Optional) Default: Colors.grey
    showMobileWalletIcons: true, // (Optional) Default: true
  ),
);

After initializing, navigate to the payment view as follows:

Navigator.push(
  context,
  MaterialPageRoute(builder: (context) => PaymentView(
    onPaymentSuccess: () {
      // Handle payment success
    },
    onPaymentError: () {
      // Handle payment error
    },
    price: 100, // (Required) Total Price e.g. 100 => 100 LE
  )),
);

Additional information #

Fake Data For Testing: 
1- For visa Card 
 Card Number : 512345678901235
 Card Holder Name : Test Account
 MM/YY : 12/25
 cvv : 123
2- For Mobile wallet
 Wallet Number : 01010101010
 Your Mpin : 123456
 one Time Password : 123456

For more details and support, please check the documentation.

If you encounter any issues, feel free to open an issue on the GitHub repository. Contributions are welcome!


تأكد من تحديث أي روابط أو معلومات تتعلق بالحزمة حسب الحاجة. إذا كان لديك أي تعديلات أو إضافات أخرى، لا تتردد في إخباري!
52
likes
0
points
209
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter package for integrating pay_with_paymob services, enabling Visa and mobile wallet payments with customizable UI and secure payment processing.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

dio, flutter, webview_flutter

More

Packages that depend on pay_with_paymob