payment_flutter 0.0.1-alpha.1
payment_flutter: ^0.0.1-alpha.1 copied to clipboard
A flutter plug-in for the native Payment library (Android and iOS).
example/lib/main.dart
import 'package:flutter/material.dart';
import 'package:payment_flutter_example/screens/home_screen.dart';
void main() {
runApp(const MaterialApp(
title: 'Payment Demo',
home: HomeScreen(),
));
}