flutter_upgrade_version 1.0.1 copy "flutter_upgrade_version: ^1.0.1" to clipboard
flutter_upgrade_version: ^1.0.1 copied to clipboard

outdated

A Flutter plugin for Android, iOS allowing get informations about package, version info. Support to get Package Information(app name, package name, version, build number), get information of version o [...]

example/lib/main.dart

import 'package:flutter/material.dart';
import 'dart:async';
import 'package:flutter_upgrade_version/flutter_upgrade_version.dart';

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

class MyApp extends StatefulWidget {
  const MyApp({Key? key}) : super(key: key);

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

class _MyAppState extends State<MyApp> {
  PackageInfo _packageInfo = PackageInfo();

  @override
  void initState() {
    super.initState();
    getPackageData();
  }

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> getPackageData() async {
    String platformVersion;
    // Platform messages may fail, so we use a try/catch PlatformException.
    // We also handle the message potentially returning null.
    // If the widget was removed from the tree while the asynchronous platform
    // message was in flight, we want to discard the reply rather than calling
    // setState to update our non-existent appearance.
    if (!mounted) return;

    _packageInfo = await PackageManager.getPackageInfo();
    setState(() {});
  }

  @override
  Widget build(BuildContext context) {
    // UpgradeVersion.getUpgradeVersionInfo().then((value) {
    //   print(value?.toJson());
    // });
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: SizedBox(
          width: double.infinity,
          child: SingleChildScrollView(
            physics: const ClampingScrollPhysics(),
            child: Column(
              crossAxisAlignment: CrossAxisAlignment.center,
              children: [
                const SizedBox(height: 20),
                Text(
                  'Version: ${_packageInfo.version}',
                  textAlign: TextAlign.center,
                ),
                const SizedBox(height: 20),
                ElevatedButton(
                  onPressed: () {
                    // getPackageData();
                    UpgradeVersion.getUpgradeVersionInfo().then((value) {
                      print(value?.toJson());
                    });
                  },
                  child: const Text('Refresh'),
                ),
                const SizedBox(height: 20),
              ],
            ),
          ),
        )
      ),
    );
  }
}
38
likes
0
pub points
92%
popularity

Publisher

unverified uploader

A Flutter plugin for Android, iOS allowing get informations about package, version info. Support to get Package Information(app name, package name, version, build number), get information of version on store (CH Play and Apple Store).

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, html, http

More

Packages that depend on flutter_upgrade_version