upi_payment_flutter 0.0.3+1 copy "upi_payment_flutter: ^0.0.3+1" to clipboard
upi_payment_flutter: ^0.0.3+1 copied to clipboard

A Flutter package to simplify UPI-based payment integration.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:upi_payment_flutter/upi_payment_flutter.dart';

void main() {
  runApp(UpiPaymentExampleApp());
}

class UpiPaymentExampleApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'UPI Payment Example',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: UpiPaymentExampleHomePage(),
    );
  }
}

class UpiPaymentExampleHomePage extends StatefulWidget {
  @override
  _UpiPaymentExampleHomePageState createState() =>
      _UpiPaymentExampleHomePageState();
}

class _UpiPaymentExampleHomePageState extends State<UpiPaymentExampleHomePage> {
  final upiPaymentHandler = UpiPaymentHandler();

  Future<void> _initiateTransaction() async {
    try {
      bool success = await upiPaymentHandler.initiateTransaction(
        payeeVpa: 'example@upi',
        payeeName: 'Example Merchant',
        transactionRefId: 'TXN123456',
        transactionNote: 'Test transaction',
        amount: 10.0,
      );

      if (success) {
        ScaffoldMessenger.of(context).showSnackBar(
          SnackBar(content: Text('Transaction initiated successfully!')),
        );
      } else {
        ScaffoldMessenger.of(context).showSnackBar(
          SnackBar(content: Text('Transaction initiation failed.')),
        );
      }
    } on PlatformException catch (e) {
      ScaffoldMessenger.of(context).showSnackBar(
        SnackBar(content: Text('Error: ${e.message}')),
      );
    }
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      appBar: AppBar(
        title: Text('UPI Payment Example'),
      ),
      body: Center(
        child: Column(
          mainAxisAlignment: MainAxisAlignment.center,
          children: <Widget>[
            Text(
              'Press the button below to initiate a UPI transaction:',
            ),
          ],
        ),
      ),
      floatingActionButton: FloatingActionButton(
        onPressed: _initiateTransaction,
        tooltip: 'Initiate Transaction',
        child: Icon(Icons.payment),
      ),
    );
  }
}
7
likes
130
points
42
downloads

Publisher

verified publisherdigitalkumbh.in

Weekly Downloads

A Flutter package to simplify UPI-based payment integration.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, url_launcher

More

Packages that depend on upi_payment_flutter