-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathmain.dart
196 lines (171 loc) · 5.44 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
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(const MyApp());
///Creates the mutable state for this widget.
class MyApp extends StatefulWidget {
/// Named [key] parameter to identify a widget.
const MyApp({Key? key}) : super(key: key);
@override
_MyAppState createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> {
GooglePlayServicesAvailability _playStoreAvailability =
GooglePlayServicesAvailability.unknown;
String _errorString = 'unknown';
bool _isUserResolvable = false;
bool _errorDialogFragmentShown = false;
// 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;
});
}
Future<void> makeGooglePlayServicesAvailable() async {
try {
await GoogleApiAvailability.instance.makeGooglePlayServicesAvailable();
} on PlatformException {
return;
}
if (!mounted) {
return;
}
}
Future<void> getErrorString() async {
String errorString;
try {
errorString = await GoogleApiAvailability.instance.getErrorString();
} on PlatformException {
errorString = 'Not available on non Android devices';
}
if (!mounted) {
return;
}
setState(() {
_errorString = errorString;
});
}
Future<void> isUserResolvable() async {
bool isUserResolvable;
try {
isUserResolvable =
await GoogleApiAvailability.instance.isUserResolvable();
} on PlatformException {
isUserResolvable = false;
}
if (!mounted) {
return;
}
setState(() {
_isUserResolvable = isUserResolvable;
});
}
Future<void> showErrorNotification() async {
try {
await GoogleApiAvailability.instance.showErrorNotification();
} on PlatformException {
return;
}
if (!mounted) {
return;
}
}
Future<void> showErrorDialogFragment() async {
bool errorDialogFragmentShown;
try {
errorDialogFragmentShown =
await GoogleApiAvailability.instance.showErrorDialogFragment();
} on PlatformException {
errorDialogFragmentShown = false;
}
if (!mounted) {
return;
}
setState(() {
_errorDialogFragmentShown = errorDialogFragmentShown;
});
}
@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,
),
Center(
child: Text(
'Google Play Store status: ${_playStoreAvailability.toString().split('.').last}\n',
),
),
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',
),
),
MaterialButton(
onPressed: () => makeGooglePlayServicesAvailable(),
child: const Text('Make Google Play Service available'),
color: Colors.red,
),
const SizedBox(height: 30),
MaterialButton(
onPressed: () => getErrorString(),
child: const Text('Get string of the error code'),
color: Colors.red,
),
Center(child: Text('Error string: $_errorString\n')),
MaterialButton(
onPressed: () => isUserResolvable(),
child: const Text('Error resolvable by user'),
color: Colors.red,
),
Center(
child: Text('Error resolvable by user: $_isUserResolvable\n'),
),
MaterialButton(
onPressed: () => showErrorNotification(),
child: const Text('Show error notification'),
color: Colors.red,
),
const SizedBox(height: 30),
MaterialButton(
onPressed: () => showErrorDialogFragment(),
child: const Text('Show error dialog fragment'),
color: Colors.red,
),
Center(
child: Text('Error dialog shown: $_errorDialogFragmentShown\n'),
),
],
),
),
);
}
}