flutter_hpay_sdk 0.0.1 copy "flutter_hpay_sdk: ^0.0.1" to clipboard
flutter_hpay_sdk: ^0.0.1 copied to clipboard

This is the official HPay payment gateway plugin for Flutter. Allows you to accept credit cards, debit cards, internet banking,...

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:flutter_hpay_sdk/gateway_sdk.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
          appBar: AppBar(
            title: const Text('HPay Payment Gateway'),
          ),
          body: const Column(
            children: [
              Expanded(
                  child: GatewaySdk(
                    orderCode: 'OM_123456', //do merchant quy dinh, phai la duy nhat
                    price: '50000',
                    paymentMethodId: 1095,
                    notifyUrl:
                    'http://10.0.9.18:8090/test_checkout/checkout_v1/success.php', //your notify url
                    merchantId: '64875', //your merchant id
                    merchantPass: '09217d13ecfa568', //your merchant password
                    receiverEmail: 'trungnv@htpgroup.com.vn', //email người nhận
                    env: 0, //1 môi trường production, 0 là môi trường sandbox
                  )),
            ],
          )),
    );
  }
}
1
likes
130
points
25
downloads

Publisher

unverified uploader

Weekly Downloads

This is the official HPay payment gateway plugin for Flutter. Allows you to accept credit cards, debit cards, internet banking,...

Homepage

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

crypto, flutter, flutter_web_plugins, plugin_platform_interface, webview_flutter

More

Packages that depend on flutter_hpay_sdk