cloudpayments 0.3.0 copy "cloudpayments: ^0.3.0" to clipboard
cloudpayments: ^0.3.0 copied to clipboard

A Flutter plugin for integrating Cloudpaymanets in Android and iOS applications.

example/lib/main.dart

import 'package:cloudpayments_example/screens/checkout/checkout_screen.dart';
import 'package:flutter/material.dart';

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

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  void dispose() {
    super.dispose();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: CheckoutScreen(),
    );
  }
}
copied to clipboard
27
likes
150
points
483
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.26 - 2025.04.10

A Flutter plugin for integrating Cloudpaymanets in Android and iOS applications.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on cloudpayments