hundredpay 0.0.3 copy "hundredpay: ^0.0.3" to clipboard
hundredpay: ^0.0.3 copied to clipboard

A Flutter plugin for making payments via 100Pay - Supports Android and ios. (100Pay Checkout)

example/lib/main.dart

import 'package:flutter/material.dart';

import 'home_page.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      debugShowCheckedModeBanner: false,
      home: HomePage(),
    );
  }
}
12
likes
150
pub points
29%
popularity

Publisher

unverified uploader

A Flutter plugin for making payments via 100Pay - Supports Android and ios. (100Pay Checkout)

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

Dependencies

flutter, http, plugin_platform_interface, webview_flutter

More

Packages that depend on hundredpay