hyperpay_sdk 1.0.0
hyperpay_sdk: ^1.0.0 copied to clipboard
Flutter plugin wrapping the official HyperPay (OPPWA) Mobile SDK v7.4.0 for Android and iOS. Supports ReadyUI, CustomUI, Apple Pay, Google Pay, MADA, STC Pay, tokenization, and 3DS2.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'screens/splash_screen.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'HyperPay SDK Example',
theme: ThemeData(
colorSchemeSeed: Colors.blue,
useMaterial3: true,
),
home: const SplashScreen(),
);
}
}