airpay_flutter_v4 1.0.7 copy "airpay_flutter_v4: ^1.0.7" to clipboard
airpay_flutter_v4: ^1.0.7 copied to clipboard

A Airpay Flutter package project for airpay payments integeration.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'screens/home.dart';
import 'screens/launch.dart';

void main() {
  WidgetsFlutterBinding.ensureInitialized();
  runApp(MyApp());
}

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      initialRoute: '/',
      routes: {
        '/': (context) => SplashScreen(),
        '/home': (context) => Home(
              isSandbox: false,
            ),
        '/Choice': (context) => ChoiceScreen()
      },
    );
  }
}
0
likes
130
points
223
downloads

Publisher

unverified uploader

Weekly Downloads

A Airpay Flutter package project for airpay payments integeration.

Homepage

Documentation

API reference

License

MIT (license)

Dependencies

alert_dialog, crc32_checksum, crypto, dio, encrypt, flutter, flutter_inappwebview, flutter_spinkit, fluttertoast, intl, url_launcher, xml2json

More

Packages that depend on airpay_flutter_v4