tiptoppay_sdk 1.0.3 copy "tiptoppay_sdk: ^1.0.3" to clipboard
tiptoppay_sdk: ^1.0.3 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(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @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 const MaterialApp(
      debugShowCheckedModeBanner: false,
      home: CheckoutScreen(),
    );
  }
}
1
likes
140
points
152
downloads

Publisher

unverified uploader

Weekly Downloads

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