klump_checkout 1.0.19 klump_checkout: ^1.0.19 copied to clipboard
A Flutter plugin for payment checkout on Klump gateway. Completely supports Android and iOS.
import 'package:flutter/material.dart';
import 'package:klump_checkout/klump_checkout.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({Key? key}) : super(key: key);
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
void initState() {
super.initState();
}
@override
Widget build(BuildContext context) {
return const MaterialApp(
debugShowCheckedModeBanner: false,
home: FirstScreen(),
);
}
}
class FirstScreen extends StatelessWidget {
const FirstScreen({Key? key}) : super(key: key);
@override
Widget build(BuildContext context) {
return Scaffold(
appBar: AppBar(
title: const Text('Klump Checkout Sample'),
centerTitle: false,
),
body: Center(
child: ElevatedButton(
onPressed: () async {
final klumpCheckout = KlumpCheckout();
final res = await klumpCheckout.pay(
isLive: false,
context: context,
data: const KlumpCheckoutData(
merchantPublicKey:
'klp_pk_67561ac7055146cc8f013fa8fdcaf46146c974462e814102bbb858f7197f06c2',
amount: 300000,
shippingFee: 0,
merchantReference: "what-ever-you-want-this-to-be",
metaData: {
'customer': "Elon Musk",
'email': "musk@spacex.com",
},
items: [
KlumpCheckoutItem(
imageUrl:
'https://s3.amazonaws.com/uifaces/faces/twitter/ladylexy/128.jpg',
itemUrl: 'https://www.paypal.com/in/webapps/mpp/home',
name: 'Awesome item',
unitPrice: 150000,
quantity: 2,
)
],
shippingData: null,
email: 'agbamajeremiah@gmail.com',
phone: '08063753133',
),
);
// ignore: avoid_print
print(res);
//Perform action based on response returned from the checkout.
},
child: const Text('Text Checkout'),
),
),
);
}
}