klump_checkout 1.0.16 klump_checkout: ^1.0.16 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_test_d27ef09bd79347808b370a93968055eda39a8233a88c4b93860f119c8cd9a332',
amount: 100000,
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: 50000,
quantity: 2,
)
],
shippingData: null,
),
);
// ignore: avoid_print
print(res);
//Perform action based on response returned from the checkout.
},
child: const Text('Text Checkout'),
),
),
);
}
}