This package makes it easy to use the Thepeer in a flutter project.
- Launch ThepeerSendView in a bottom_sheet
import 'package:thepeer_flutter/thepeer_flutter.dart';
void launch() async {
await ThepeerSendView(
data: ThePeerData(
amount: 10000,
firstName: '$firstName',
receiptUrl: '$receiptUrl',
publicKey: '$publicKey',
userReference: '$userReference',
),
showLogs: true,
onClosed: () {
Navigator.pop(context);
},
onSuccess: () {
Navigator.pop(context);
},
).show(context);
}
- Use ThepeerSendView widget
import 'package:thepeer_flutter/thepeer_flutter.dart';
...
ThepeerSendView(
data: ThePeerData(
amount: 10000,
firstName: '$firstName',
receiptUrl: '$receiptUrl',
publicKey: '$publicKey',
userReference: '$userReference',
),
onClosed: () {
Navigator.pop(context);
print('Widget closed')
},
onSuccess: () {
Navigator.pop(context);
},
error: Text('Error'),
)
...
- Launch ThepeerDirectChargeView in a bottom_sheet
import 'package:thepeer_flutter/thepeer_flutter.dart';
void launch() async {
await ThepeerDirectChargeView(
data: ThePeerData(
amount: 10000,
firstName: '$firstName',
publicKey: '$publicKey',
userReference: '$userReference',
),
showLogs: true,
onClosed: () {
Navigator.pop(context);
},
onSuccess: () {
Navigator.pop(context);
},
).show(context);
}
- Use ThepeerDirectChargeView widget
import 'package:thepeer_flutter/thepeer_flutter.dart';
...
ThepeerDirectChargeView(
data: ThePeerData(
amount: 10000,
firstName: '$firstName',
publicKey: '$publicKey',
userReference: '$userReference',
),
onClosed: () {
Navigator.pop(context);
print('Widget closed')
},
onSuccess: () {
Navigator.pop(context);
},
error: Text('Error'),
)
...
Lots of PR's would be needed to improve this plugin. So lots of suggestions and PRs are welcome.