app_version_details 0.0.2 copy "app_version_details: ^0.0.2" to clipboard
app_version_details: ^0.0.2 copied to clipboard

A simple plugin to fetch the app version across android and ios platforms. Useful for displaying version info in your app or checking for updates.

example/lib/main.dart

import 'dart:async';

import 'package:app_version_details/app_version_details.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';

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

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

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

class _MyAppState extends State<MyApp> {
  String _appVersion = 'Unknown';
  final _appVersionDetailsPlugin = AppVersionDetails();

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

  // Platform messages are asynchronous, so we initialize in an async method.
  Future<void> getVersion() async {
    String version;
    // Platform messages may fail, so we use a try/catch PlatformException.
    // We also handle the message potentially returning null.
    try {
      version =
          await _appVersionDetailsPlugin.getAppVersion() ??
          'Unknown app version';
    } on PlatformException {
      version = 'Failed to get app version.';
    }

    // 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;

    setState(() {
      _appVersion = version;
    });
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(title: const Text('Plugin example app')),
        body: Center(child: Text('App Version : $_appVersion')),
      ),
    );
  }
}
1
likes
160
points
253
downloads

Publisher

verified publishersivaprasadnk.dev

Weekly Downloads

A simple plugin to fetch the app version across android and ios platforms. Useful for displaying version info in your app or checking for updates.

Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (license)

Dependencies

flutter, plugin_platform_interface

More

Packages that depend on app_version_details

Packages that implement app_version_details