paypal_payment_flutter 0.0.1 copy "paypal_payment_flutter: ^0.0.1" to clipboard
paypal_payment_flutter: ^0.0.1 copied to clipboard

A Flutter plugin that enables seamless PayPal payment processing and integration within Flutter apps.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:paypal_payment_flutter/paypal_payment_flutter.dart';
import 'ui/features/home/home_screen.dart';

void main() async {
  WidgetsFlutterBinding.ensureInitialized();

  await PaypalPayment.instance.initialize();

  runApp(const PaypalPaymentExampleApp());
}

class PaypalPaymentExampleApp extends StatelessWidget {
  const PaypalPaymentExampleApp({super.key});

  @override
  Widget build(BuildContext context) {
    return const MaterialApp(
      home: HomeScreen(),
      debugShowCheckedModeBanner: false,
      title: "Paypal Payment Flutter Example",
    );
  }
}
3
likes
0
points
159
downloads

Publisher

unverified uploader

Weekly Downloads

A Flutter plugin that enables seamless PayPal payment processing and integration within Flutter apps.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, http, plugin_platform_interface, webview_flutter

More

Packages that depend on paypal_payment_flutter

Packages that implement paypal_payment_flutter