Flutter Thepeer
This package makes it easy to use the Thepeer in a flutter project.
📸 Screen Shots

🚀 How to Use plugin
- Launch ThepeerView in a bottom_sheet
import 'package:thepeer_flutter/thepeer_flutter.dart';
void launch() async {
await ThepeerView(
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 ThepeerView widget
import 'package:thepeer_flutter/thepeer_flutter.dart';
...
ThepeerView(
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'),
)
...
✨ Contribution
Lots of PR's would be needed to improve this plugin. So lots of suggestions and PRs are welcome.