-
Notifications
You must be signed in to change notification settings - Fork 8
/
main.dart
110 lines (94 loc) · 2.77 KB
/
main.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
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.isInstalled(mode: PaymentEnv.DEVELOPMENT, merchantInfo: "").then((value) {
print("安装成功$value");
});
}, child: Text('是否安装云支付App')),
TextButton(onPressed: (){
UnionPay.pay(
mode: PaymentEnv.DEVELOPMENT,
tn: "669802785406247611910",
scheme: "UnionPayTest",
).then((value) {
print("##########$value");
});
}, child: Text('调起支付'))
],
)
),
);
}
}