forked from Baseflow/flutter-google-api-availability
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.dart
68 lines (60 loc) · 2.17 KB
/
main.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
import 'dart:async';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:google_api_availability/google_api_availability.dart';
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
GooglePlayServicesAvailability _playStoreAvailability =
GooglePlayServicesAvailability.unknown;
// Platform messages are asynchronous, so we initialize in an async method.
Future<void> checkPlayServices([bool showDialog = false]) async {
GooglePlayServicesAvailability playStoreAvailability;
// Platform messages may fail, so we use a try/catch PlatformException.
try {
playStoreAvailability = await GoogleApiAvailability.instance
.checkGooglePlayServicesAvailability(showDialog);
} on PlatformException {
playStoreAvailability = GooglePlayServicesAvailability.unknown;
}
// 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(() {
_playStoreAvailability = playStoreAvailability;
});
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: ListView(
children: <Widget>[
MaterialButton(
onPressed: () => checkPlayServices(),
child: const Text('Get PlayServices availability'),
color: Colors.red,
),
MaterialButton(
onPressed: () => checkPlayServices(true),
child:
const Text('Get PlayServices availability with fix dialog'),
color: Colors.redAccent,
),
Center(
child: Text(
'Google Play Store status: ${_playStoreAvailability.toString().split('.').last}\n')),
],
)),
);
}
}