indian_pay 0.0.7 copy "indian_pay: ^0.0.7" to clipboard
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(),
        );
      },
    );
  }
}
0
likes
105
points
20
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter plugin that enables seamless integration of Indian payment gateways including Payin, Payout, and transaction status APIs with clean UI components.

Documentation

API reference

License

MIT (license)

Dependencies

flutter, flutter_web_plugins, fluttertoast, http, plugin_platform_interface, provider, web

More

Packages that depend on indian_pay

Packages that implement indian_pay