fastpay 0.1.2 copy "fastpay: ^0.1.2" to clipboard
fastpay: ^0.1.2 copied to clipboard

discontinued

Integration plugin for open payment platforms for Android and iOS mobile devices.

example/lib/main.dart

import 'package:fastpay_example/pages/home_screen.dart';
import 'package:fastpay_example/pages/intro_screen.dart';
import 'package:fastpay_example/pages/splash_screen.dart';
import 'package:flutter/material.dart';
import 'dart:async';

import 'package:flutter/services.dart';
import 'package:fastpay/fastpay.dart';

var routes = <String, WidgetBuilder>{
  "/home": (BuildContext context) => HomeScreen(),
  "/intro": (BuildContext context) => IntroScreen(),
};

void main() {
  runApp(
    new MaterialApp(
      theme: ThemeData(primaryColor: Colors.blueAccent,  accentColor: Colors.yellowAccent),
      home: SplashScreen(),
      routes: routes,
    )
  );
}
1
likes
40
pub points
0%
popularity

Publisher

unverified uploader

Integration plugin for open payment platforms for Android and iOS mobile devices.

Repository (GitHub)
View/report issues

License

GPL-3.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on fastpay