hyperpay 0.0.10-alpha hyperpay: ^0.0.10-alpha copied to clipboard
A plugin to wrap HyperPay mobile SDK for iOS and Android, used to accept payments in Flutter apps using HyperPay Payments Gateway.
import 'package:flutter/material.dart';
import 'package:hyperpay_example/checkout_view.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return const MaterialApp(
home: CheckoutView(),
);
}
}