pit_payment 0.1.1
pit_payment: ^0.1.1 copied to clipboard
Payment Solution by PIT, supported by Midtrans. Credit card supported
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:pit_payment/pit_payment.dart';
void main() => runApp(PitPaymentDemo());
class PitPaymentDemo extends StatefulWidget {
@override
_PitPaymentDemoState createState() => _PitPaymentDemoState();
}
class _PitPaymentDemoState extends State<PitPaymentDemo> {
@override
Widget build(BuildContext context) {
InkWell();
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Pit Payment Demo'),
),
body: SingleChildScrollView(
child: PitPayment(100000.0, (type, {result}) {
print("I got payment : $type, $result");
}),
),
),
);
}
}