tiptoppay_sdk 1.0.2 copy "tiptoppay_sdk: ^1.0.2" to clipboard
tiptoppay_sdk: ^1.0.2 copied to clipboard

A Flutter plugin for integrating TipTopPay payments in Android and iOS applications.

example/lib/main.dart

import 'package:tiptoppay_sdk_example/screens/checkout_screen.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(MyApp());
}

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  void dispose() {
    super.dispose();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      home: CheckoutScreen(),
    );
  }
}
1
likes
130
pub points
46%
popularity

Publisher

unverified uploader

A Flutter plugin for integrating TipTopPay payments in Android and iOS applications.

Documentation

API reference

License

MIT (license)

Dependencies

dio, flutter, plugin_platform_interface

More

Packages that depend on tiptoppay_sdk