union_pay 1.0.0 copy "union_pay: ^1.0.0" to clipboard
union_pay: ^1.0.0 copied to clipboard

outdated

A Flutter plugin for allowing developers to pay with native Android&iOS UnionPay SDKs.

example/lib/main.dart

import 'dart:convert';

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

import 'package:flutter/services.dart';
import 'package:union_pay/enum/union_pay_enum.dart';
import 'package:union_pay/union_pay.dart';

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

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: HomePage(),
    );
  }
}

class HomePage extends StatefulWidget {
  @override
  State<StatefulWidget> createState() => HomePageState();
}
class HomePageState extends State<HomePage> {
  String _platformVersion = 'Unknown';

  @override
  void initState() {
    super.initState();
    initPlatformState();
  }

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> initPlatformState() async {
    String platformVersion;
    // Platform messages may fail, so we use a try/catch PlatformException.
    // We also handle the message potentially returning null.
    try {

      platformVersion = await UnionPay.uPayVersion();
      print("platformVersion===$platformVersion");
    } on PlatformException {
      platformVersion = 'Failed to get platform version.';
    }

    // If the widget was removed from the tree while the asynchronous platform
    // message was in flight, we want to discard the reply rather than calling
    // setState to update our non-existent appearance.
    if (!mounted) return;

    setState(() {
      _platformVersion = platformVersion;
    });


    UnionPay.payListener((result) {
      showDialog(
        context: context,
        builder: (context) {
          return  AlertDialog(
            title: Text('TEST'),
            content: Text(result.status.toString()),

          );
        },
      );
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Column(
          children: [
            Center(
              child: Text('Running on: $_platformVersion\n'),
            ),

            TextButton(onPressed: (){
              UnionPay.pay(
                mode: PaymentEnv.DEVELOPMENT,
                tn: "886511661307367448110",
                scheme: "UnionPayTest",
              ).then((value) {
                print("##########$value");
              });
            }, child: Text('调起支付'))
          ],
        )
      ),
    );
  }
}
4
likes
0
pub points
51%
popularity

Publisher

unverified uploader

A Flutter plugin for allowing developers to pay with native Android&iOS UnionPay SDKs.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on union_pay