Integrating Paypal Payments into Flutter App
I am looking into integrating Paypal payments into my Flutter app, but have run into some difficulty.
The Flutter documentation does not provide any standard APIs for Paypal integration, and I have not been able to find a satisfactory answer elsewhere.
Does anyone have experience with this and can provide some guidance?
//Relevant code
import 'package:flutter/material.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'My Flutter App',
home: Scaffold(
body: Center(
child: Text('Integrating Paypal Payments'),
),
),
);
}
}