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

This is a Flutter widget that checks and displays the version status of application and you can easily guide user to update your app.

example/example.dart

// Copyright (c) 2021, Kato Shinya. All rights reserved.
// Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.

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

class DemoAppVersion extends StatelessWidget {
  const DemoAppVersion({Key? key}) : super(key: key);

  @override
  Widget build(BuildContext context) => Scaffold(
        appBar: AppBar(
          title: const Text('Sample For App Version'),
        ),
        body: const Center(
          child: AppVersion(),
        ),
      );
}
12
likes
130
pub points
66%
popularity

Publisher

verified publishershinyakato.dev

This is a Flutter widget that checks and displays the version status of application and you can easily guide user to update your app.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (LICENSE)

Dependencies

flutter, new_version, package_info_plus

More

Packages that depend on app_version