bootpay 5.0.20 copy "bootpay: ^5.0.20" to clipboard
bootpay: ^5.0.20 copied to clipboard

A Bootpay plugin that provides payment api on Android, iOS and Web.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'screens/main_menu_screen.dart';

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

class BootpayExampleApp extends StatelessWidget {
  const BootpayExampleApp({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Bootpay Example',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        primarySwatch: Colors.blue,
        primaryColor: const Color(0xFF3182F6),
        scaffoldBackgroundColor: Colors.white,
      ),
      home: const MainMenuScreen(),
    );
  }
}