Packages for Payment Implementation

These Flutter packages for payment implementation provide everything you need to get started including in-app purchases (IAP) and subscriptions.

flutter_stripe_payment

To accept card payments, add Stripe to your Flutter application and use Payment Intents with Strong SCA 3DS Compliance.

cashfree_pg

This is the official Flutter plugin for integrating Cashfree PG with your app. It displays the payment page inside a webview.

flutter_paystack

A Paystack plugin for making payments via the Paystack Payment Gateway is available. It works on Android and iOS devices.

upi_pay

A Flutter plugin for launching UPI payment applications on Android and iOS in order to complete UPI payments.

stripe_sdk

The first and only native Stripe library for Flutter. It has comprehensive SCA/PSD2 support, payment intents, and the most recent Stripe features.

flutter_checkout_payment

This plugin is for online payment via Checkout. It has utilized the native SDKs to run on a Flutter environment.

safexpay

A library for creating a payment gateway with SafexPay

huawei_iap

The Huawei IAP Kit plugin for Flutter allows you to integrate the Huawei IAP Service into your Flutter application. The In-App Purchases (IAP) service provided by Huawei allows you to sell in-app items and makes it easier to accept payments.

flutter_paymentez

This is a Flutter package that has been added that utilizes the Android and iOS Paymentez SDK to add credit cards.

Similar Posts

  • Floating Action Button Packages

    simple_speed_dial A simple Flutter speed dial. You may add as many speed dial alternatives as you wish. Labels may be added beside the options. Every FAB’s color can be customized. draggable_fab The FAB wrapper widget may be dragged to any edge of the screen and is draggable. curved_nav_bar The left and right side of the…

  • Bottom Bar Packages

    convex_bottom_bar The ConvexAppBar is a Flutter package that creates and shows a convex tab in the bottom bar. Theming is supported. persistent_bottom_nav_bar For Flutter, a complete, highly configurable bottom navigation bar that is persistent/static and can be used for any application. It has up to 20 different styles. salomon_bottom_bar Another bottom navigation bar, but this…

  • GDPR Packages

    GDPR is coming up, and you’re not sure what to do. The General Data Protection Regulation (GDPR) went into effect in 2018. This new regulation will have a major impact on how companies collect data from European Union citizens. It’s important that your company is compliant with this new law or risk heavy fines of…

  • Packages to Scan Barcode and QR

    flutter_barcode_scanner A plugin for Android and iOS that enables barcode scanning. Barcodes, QR codes, and other types of coding are all supported. qr_flutter A Widget or custom painter may be used to display QR codes for Flutter. qr_code_scanner The zxing library is a QR code scanner that can be integrated into flutter. It makes use…

  • Router and Navigation Packages

    fluro Fluro is a Flutter routing library that provides custom routing capabilities such as wildcards, named parameters, and clear route definitions. beamer The Router and Navigator’s Pages API, aka “Navigator 2.0,” enables you to traverse guarded page stacks and URLs via the Router and Navigator. shelf_router Supports URL parameters, nested routers, and router constructions generated…

  • State Manager

    If you are new to Flutter and state management, I suggest using riverpod package. Provider and Riverpod are both good. provider InheritedWidget are snippets of code that allow you to reuse and easily add functionality to widgets. This package adds a wrapper around it so they’re easier to use and more reusable. Too often when…