indian_pay 0.0.7
indian_pay: ^0.0.7 copied to clipboard
A Flutter plugin that enables seamless integration of Indian payment gateways including Payin, Payout, and transaction status APIs with clean UI components.
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:indian_pay/indian_pay.dart';
// import 'package:indian_pay/view/helper/screens/dashboard_screen.dart';
double height = 0.0;
double width = 0.0;
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return LayoutBuilder(
builder: (context, constraints) {
height = constraints.maxHeight;
width = constraints.maxWidth;
return MaterialApp(
debugShowCheckedModeBanner: false,
home: PaymentGatewayUI(),
);
},
);
}
}