Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 485 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 485 Bytes

version_check

pub package

Check iOS/Android/Mac store app version and provide update alert if neccessary.

Usage

import 'package:version_check/version_check.dart';

  final versionCheck = VersionCheck();

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

  Future checkVersion() async {
    await versionCheck.checkVersion(context);
  }