mercado_pago_integration 1.1.9 copy "mercado_pago_integration: ^1.1.9" to clipboard
mercado_pago_integration: ^1.1.9 copied to clipboard

MercadoPago Mobile Checkout Integration for android and ios. Easy to install, Easy to integrate, Android Support, IOS Support.

MercadoPago Mobile Checkout Integration #

Screenshot iOS

🌟 Features #

  • MercadoPago's SDK integrated, supporting Mobile Checkout
  • Easy to install
  • Easy to integrate
  • PCI compliance
  • Android Support
  • IOS Support

📲 How to Install #

To use this plugin, add mercado_pago_integration as a dependency in your pubspec.yaml file.

🐒 How to use #

Only 4 steps needed to create a basic checkout using mercado_pago_integration:

1 - Import into the project #

import 'package:mercado_pago_integration/mercado_pago_integration.dart';

2 - Set your PublicKey and AccessToken #

In order to start a new mobile checkout, you need to have a Public_Key & AccessToken

3 - Create your checkout preference configuration #

See the example below, if you want more information, here is the official documentation.

final Map<String, Object> preferenceMap = {
  'items': [
    {
      'title': 'Test Product',
      'description': 'Description',
      'quantity': 3,
      'currency_id': 'ARS',
      'unit_price': 1500,
    }
  ],
  'payer': {'name': 'Buyer G.', 'email': 'test@gmail.com'},
};

4 - Start Mobile Checkout #

(await MercadoPagoIntegration.startCheckout(
    publicKey: "PUBLIC_KEY",
    preference: preference,
    accessToken: "ACCESS_TOKEN",
  )
).fold(
  (Failure failure) => debugPrint('Failure => ${failure.message}'),
  (Payment payment) => debugPrint('Payment => ${payment.id}')
);

IOS Integration #

1 - Update Podfile

platform :ios, '10.0'

2 - Update AppDelegate.swift

import UIKit
import Flutter

@UIApplicationMain
@objc class AppDelegate: FlutterAppDelegate {

    var navigationController: UINavigationController?;

    override func application(
        _ application: UIApplication,
        didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?
    ) -> Bool {
        let flutterViewController: FlutterViewController = window?.rootViewController as! FlutterViewController
        GeneratedPluginRegistrant.register(with: self)
        self.navigationController = UINavigationController(rootViewController: flutterViewController)
        self.navigationController?.isNavigationBarHidden = true
        self.window = UIWindow(frame: UIScreen.main.bounds)
        self.window?.rootViewController = self.navigationController
        self.window?.makeKeyAndVisible()

        return super.application(application, didFinishLaunchingWithOptions: launchOptions)
    }
}

class CustomFlutterViewController:FlutterViewController {
  
  override open func viewWillAppear(_ animated: Bool) {
      super.viewWillAppear(animated)
      self.navigationController?.isNavigationBarHidden = true
  }
  
  override open func viewWillDisappear(_ animated: Bool) {
      super.viewWillDisappear(animated)
      self.navigationController?.isNavigationBarHidden = false
  }
}

3 - Update Main.storyboard using CustomFlutterViewController instead of FlutterViewController

  customClass="CustomFlutterViewController" customModule="Runner" customModuleProvider="target"

Responses

class {
  Payment({
    this.collectorId,
    this.couponAmount,
    this.currencyId,
    this.dateCreated,
    this.paymentId,
    this.operationType,
    this.paymentMethodId,
    this.paymentTypeId,
    this.status,
    this.statusDetail,
    this.transactionAmount,
    this.transactionAmountRefunded,
    this.dateApproved,
  });
}

To Be Defined

📋 Supported OS & SDK Versions #

  • iOS 10.0
  • Addroid minSdk 19

🔮 Project Example #

This project includes an example project using Mercado Pago Integration, checkout example folder. In case you need support contact the Caramel Point Developers Site.

👨🏻‍💻 Author #

Caramel Point

👮🏻 License #


MIT License

Copyright (c) CaramelPoint Inc

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
20
likes
40
pub points
35%
popularity

Publisher

unverified uploader

MercadoPago Mobile Checkout Integration for android and ios. Easy to install, Easy to integrate, Android Support, IOS Support.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

dartz, equatable, flutter, intl, mercadopago_sdk

More

Packages that depend on mercado_pago_integration