A package to add google pay and apple pay to your Flutter application. It is the payment package for the stage 5 task of HNGx internship.
Platform Support
| Android | Google Pay |
|---|---|
| iOS: | Apple Pay |
Features
This package helps to integrate Google pay and Apple pay into your app.
Getting started
Usage
-
Import the package into your project. To start using this plugin, add
in_app_paymentas a dependency in your pubspec.yaml file:dependencies: in_app_payment: ^0.0.1 -
Initialize HNGPay:
final pay = HNGPay(); -
For Android, invoke the googlePay function in place of your 'pay' button in your app and pass the amount to be paid as argument.
pay.googlePay("12"); -
For IOS, invoke the applePay function in place of your 'pay' button in your app and pass the amount to be paid as argument.
pay.applePay('12');
Example
This snippet assumes the existence a payment configuration
import 'package:flutter/material.dart';
import 'package:in_app_payment/in_app_payment.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: const MyHomePage(title: 'Flutter Demo Home Page'),
);
}
}
class MyHomePage extends StatefulWidget {
const MyHomePage({super.key, required this.title});
final String title;
@override
State<MyHomePage> createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
final pay = HNGPay();
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
title: Text("Payment test"),
),
body: Center(
child: Container(
child: pay.googlePay(amountToPay: "24"), //for android implementaion
//child : pay.applePay(amountToPay: "24"); for iOS implementation
),
),
);
}
}
Additional information
Tell users more about the package: where to find more information, how to contribute to the package, how to file issues, what response they can expect from the package authors, and more.
Note: This is not the final release as we can't process payment now. We would be updating as we progress