update_available 2.0.0-nullsafety update_available: ^2.0.0-nullsafety copied to clipboard
Know if there's any update for your Flutter app, based on published versions.
import 'package:flutter/widgets.dart';
import 'package:update_available/update_available.dart';
import 'shared/button.dart';
import 'shared/colors.dart';
void main() {
runApp(UpdateAvailableExample());
}
class UpdateAvailableExample extends StatefulWidget {
UpdateAvailableExample({Key key}) : super(key: key);
@override
_UpdateAvailableExampleState createState() => _UpdateAvailableExampleState();
}
class _UpdateAvailableExampleState extends State<UpdateAvailableExample> {
String text = 'Is there any update?';
@override
Widget build(BuildContext context) {
return WidgetsApp(
color: Green,
pageRouteBuilder: <T>(RouteSettings settings, WidgetBuilder builder) {
return PageRouteBuilder(
pageBuilder: (context, __, ___) => builder(context),
);
},
home: Container(
padding: const EdgeInsets.all(24.0),
color: Green,
child: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Text(
text,
textAlign: TextAlign.center,
style: TextStyle(
color: Red,
fontWeight: FontWeight.bold,
),
),
const SizedBox(height: 16.0),
Button(
onTap: _onTap,
child: Padding(
padding: const EdgeInsets.all(8.0),
child: Text(
'Check for update!',
style: TextStyle(
fontWeight: FontWeight.bold,
),
),
),
),
],
),
),
);
}
Future<void> _onTap() async {
setState(() {
text = 'Checking...';
});
final availability = await getUpdateAvailability();
setState(() {
text = availability.fold(
available: () => 'There\'s an update available!',
notAvailable: () => 'There\'s no update available!',
unknown: () => 'Sorry, couldn\'t determine if there is or not '
'an available update!',
);
});
}
}