Created
August 25, 2019 10:08
-
-
Save Wizpna/58e7d009e266aa5c0fb7a278d7509e14 to your computer and use it in GitHub Desktop.
Demostrating how to build a playment app using flutter and flutterwave
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'package:flutter_rave/flutter_rave.dart'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget { | |
// This widget is the root of your application. | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( | |
color: Colors.orangeAccent, | |
theme: ThemeData(primaryColor: Colors.orangeAccent), | |
title: 'Flutterwave', | |
debugShowCheckedModeBanner: false, | |
home: MyHomePage(title: 'Flutterwave'), | |
); | |
} | |
} | |
class MyHomePage extends StatefulWidget { | |
MyHomePage({Key key, this.title}) : super(key: key); | |
final String title; | |
@override | |
_MyHomePageState createState() => _MyHomePageState(); | |
} | |
class _MyHomePageState extends State<MyHomePage> { | |
@override | |
Widget build(BuildContext context) { | |
return Scaffold( | |
appBar: AppBar( | |
title: Text(widget.title), | |
centerTitle: true, | |
), | |
body: Center( | |
child: Builder( | |
builder: (context) => SingleChildScrollView( | |
child: Padding( | |
padding: const EdgeInsets.only(left: 10.0, right: 10), | |
child: InkWell( | |
onTap: () => _pay(context), | |
child: Card( | |
color: Colors.orangeAccent, | |
elevation: 15, | |
child: Container( | |
height: 250, | |
width: MediaQuery.of(context).size.width, | |
child: Center( | |
child: Row( | |
mainAxisAlignment: MainAxisAlignment.center, | |
children: <Widget>[ | |
Text( | |
"Card Payment", | |
style: TextStyle( | |
color: Colors.black, | |
fontSize: 20, | |
fontWeight: FontWeight.bold), | |
), | |
SizedBox( | |
width: 10, | |
), | |
Icon( | |
Icons.payment, | |
color: Colors.black, | |
size: 30, | |
) | |
], | |
), | |
), | |
), | |
), | |
), | |
), | |
), | |
), | |
), | |
); | |
} | |
_pay(BuildContext context) { | |
final snackBar_onFailure = SnackBar(content: Text('Transaction failed')); | |
final snackBar_onClosed = SnackBar(content: Text('Transaction closed')); | |
final _rave = RaveCardPayment( | |
isDemo: true, | |
encKey: "c53e399709de57d42e2e36ca", | |
publicKey: "FLWPUBK-d97d92534644f21f8c50802f0ff44e02-X", | |
transactionRef: "hvHPvKYaRuJLlJWSPWGGKUyaAfWeZKnm", | |
amount: 100, | |
email: "demo1@example.com", | |
onSuccess: (response) { | |
print("$response"); | |
print("Transaction Successful"); | |
if (mounted) { | |
Scaffold.of(context).showSnackBar( | |
SnackBar( | |
content: Text("Transaction Sucessful!"), | |
backgroundColor: Colors.green, | |
duration: Duration( | |
seconds: 5, | |
), | |
), | |
); | |
} | |
}, | |
onFailure: (err) { | |
print("$err"); | |
print("Transaction failed"); | |
Scaffold.of(context).showSnackBar(snackBar_onFailure); | |
}, | |
onClosed: () { | |
print("Transaction closed"); | |
Scaffold.of(context).showSnackBar(snackBar_onClosed); | |
}, | |
context: context, | |
); | |
_rave.process(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment