in_app_update 1.1.7
in_app_update: ^1.1.7 copied to clipboard
Enables In App Updates on Android using the official Android APIs.
example/lib/main.dart
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:in_app_update/in_app_update.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
AppUpdateInfo _updateInfo;
GlobalKey<ScaffoldState> _scaffoldKey = new GlobalKey();
bool _flexibleUpdateAvailable = false;
@override
void initState() {
super.initState();
}
// Platform messages are asynchronous, so we initialize in an async method.
Future<void> checkForUpdate() async {
InAppUpdate.checkForUpdate().then((info) {
setState(() {
_updateInfo = info;
});
}).catchError((e) => _showError(e));
}
void _showError(dynamic exception) {
_scaffoldKey.currentState.showSnackBar(SnackBar(content: Text(exception.toString())));
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
key: _scaffoldKey,
appBar: AppBar(
title: const Text('In App Update Example App'),
),
body: Padding(
padding: const EdgeInsets.all(8.0),
child: Column(
children: <Widget>[
Center(
child: Text('Update info: $_updateInfo'),
),
RaisedButton(
child: Text('Check for Update'),
onPressed: () => checkForUpdate(),
),
RaisedButton(
child: Text('Perform immediate update'),
onPressed: _updateInfo?.updateAvailable == true
? () {
InAppUpdate.performImmediateUpdate().catchError((e) => _showError(e));
}
: null,
),
RaisedButton(
child: Text('Start flexible update'),
onPressed: _updateInfo?.updateAvailable == true
? () {
InAppUpdate.startFlexibleUpdate().then((_) {
setState(() {
_flexibleUpdateAvailable = true;
});
}).catchError((e) => _showError(e));
}
: null,
),
RaisedButton(
child: Text('Complete flexible update'),
onPressed: !_flexibleUpdateAvailable
? null
: () {
InAppUpdate.completeFlexibleUpdate().then((_) {
_scaffoldKey.currentState.showSnackBar(SnackBar(content: Text('Success!')));
}).catchError((e) => _showError(e));
},
)
],
),
),
),
);
}
}