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

outdated

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

example/lib/main.dart

import 'package:cloudpayments_example/card_screen.dart';
import 'package:cloudpayments_example/main_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(
      initialRoute: '/',
      routes: {
        '/': (context) => MainScreen(),
        '/card': (context) => CardScreen(),
      },
    );
  }
}
27
likes
0
pub points
79%
popularity

Publisher

unverified uploader

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

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on cloudpayments