manup 9.2.0 copy "manup: ^9.2.0" to clipboard
manup: ^9.2.0 copied to clipboard

Mandatory update for Flutter Apps that prompts or forces app update by querying a hosted JSON file.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:http/http.dart';
import 'package:manup/manup.dart';

// See /examples for more examples
Future<void> main() async {
  WidgetsFlutterBinding.ensureInitialized();

  runApp(const ExampleApp());
}

class ExampleApp extends StatelessWidget {
  const ExampleApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: ManUpWidget(
        // Alternatively, use [FireBaseRemoteConfigManUpService] or implement
        // your own [ManUpService]
        service: HttpManUpService('https://example.com/my_config.json',
            http: Client()),
        child: const Text('My App'),
        // Optionals
        onComplete: (_) {},
        onError: (_) {},
        onStatusChanged: (status) {},
        shouldShowAlert: () => true,
      ),
    );
  }
}
copied to clipboard
5
likes
0
points
357
downloads

Publisher

verified publishernextfaze.com

Weekly Downloads

2024.09.18 - 2025.04.02

Mandatory update for Flutter Apps that prompts or forces app update by querying a hosted JSON file.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

firebase_analytics, firebase_remote_config, flutter, http, meta, package_info_plus, path_provider, pub_semver, url_launcher

More

Packages that depend on manup