iap_quick 0.0.9 copy "iap_quick: ^0.0.9" to clipboard
iap_quick: ^0.0.9 copied to clipboard

This plugin makes integrating **In-App Purchase** in your Flutter app easy and fast. With a simple API, multi-platform support, and secure payment processing, this plugin lets you focus on user experi [...]

example/lib/main.dart

import 'package:flutter/material.dart';

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

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

  @override
  State<MyApp> createState() => _MyAppState();
}

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Text('Running on'),
        ),
      ),
    );
  }
}
2
likes
0
points
200
downloads

Publisher

verified publishermgorki.id.vn

Weekly Downloads

This plugin makes integrating **In-App Purchase** in your Flutter app easy and fast. With a simple API, multi-platform support, and secure payment processing, this plugin lets you focus on user experience without worrying about complex technical issues.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, in_app_purchase, in_app_purchase_storekit

More

Packages that depend on iap_quick

Packages that implement iap_quick