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

A Flutter plugin to show an in-app update prompt using the native App Store product page on iOS, keeping users inside your app.

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"),
          ),
        ),
      ),
    );
  }
}
11
likes
160
points
279
downloads

Documentation

API reference

Publisher

verified publisheraxions.tech

Weekly Downloads

A Flutter plugin to show an in-app update prompt using the native App Store product page on iOS, keeping users inside your app.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on in_app_update_flutter

Packages that implement in_app_update_flutter