A Budmall Plugin for Flutter Apps
Flutter plugin for online shopping with Budmall Payment System. Fully supports all platform.
To use this plugin, add flutterbudmall
as a dependency in your pubspec.yaml file.
Then initialize the plugin preferably in the initState
of your widget.
import 'package:flutterbudmall/flutterbudmall.dart';
class _ExamplePayementPageState extends State<ExamplePayementPage> {
var email = 'Add your customer email Here';
final plugin = Budmall();
@override
void initState() {
plugin.initialize(emailed: email);
}
}
The way to puchase goods with the plugin.
plugin.checkout();
For help getting started with Flutter, view the online documentation.
An example project has been provided in this plugin.
Clone this repo and navigate to the example folder. Open it with a supported IDE or execute flutter run
from that folder in terminal.
The project is open to public contribution. Please feel very free to contribute. Experienced an issue or want to report a bug? Please, report it here. Remember to be as descriptive as possible.