FLUTTER ECOSYSTEM

caramelpoint/mercado_pago_integration

Flutter 插件,用于在 Android 和 iOS 上支持 MercadoPago 移动结账

mercadopago_integration 项目封面
Stars
17
Forks
6
最近推送(UTC)
2021年3月10日
项目状态
未归档
Caramel Point GitHub avatar
GITHUB Organization

Caramel Point ↗

Software engineering agency where each member participates in ensuring the success of your business.

Córdoba, Argentina官方网站 ↗
语言DartSwiftKotlinRubyObjective-C

此仓库发布的插件

使用的依赖

依赖清单 6 项

原始 README

以下为英文项目原文快照,最新内容请访问 GitHub。

展开 / 收起项目 README

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.