uni_payments 0.0.5 uni_payments: ^0.0.5 copied to clipboard
Uni Payments integrates various payment gateways for fast and easy transactions.
import 'package:flutter/material.dart';
import 'package:uni_payments_example/unipayment_home_screen.dart';
void main() {
WidgetsFlutterBinding.ensureInitialized();
runApp(MaterialApp(home: MyApp()));
}
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
home: UniPaymentsHomeScreen(),
);
}
}