in_app_update_flutter 1.0.0 copy "in_app_update_flutter: ^1.0.0" to clipboard
in_app_update_flutter: ^1.0.0 copied to clipboard

A Flutter plugin to show in-app update bottom sheet for iOS using the App Store product page via StoreKit.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:in_app_update_flutter/in_app_update_flutter.dart';

void main() => runApp(const MyApp());

class MyApp extends StatelessWidget {
  const MyApp({super.key});
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: const Text('In-App Update Example')),
        body: Center(
          child: ElevatedButton(
            onPressed: () async {
              await InAppUpdateFlutter().showUpdate(appStoreId: "544007664");
            },
            child: const Text("Check for Update"),
          ),
        ),
      ),
    );
  }
}
2
likes
0
points
39
downloads

Publisher

verified publisherpulkit.sh

Weekly Downloads

A Flutter plugin to show in-app update bottom sheet for iOS using the App Store product page via StoreKit.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on in_app_update_flutter

Packages that implement in_app_update_flutter