Skip to content

Commit 3d5c8c8

Browse files
committed
Flutter format
1 parent a949bad commit 3d5c8c8

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

example/lib/main.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,7 @@ class _MyAppState extends State<MyApp> {
8181
),
8282
Center(
8383
child: Text(
84-
'Google Play Store status: ${_playStoreAvailability.toString().split('.').last}\n')
85-
),
84+
'Google Play Store status: ${_playStoreAvailability.toString().split('.').last}\n')),
8685
MaterialButton(
8786
onPressed: () => makeGooglePlayServicesAvailable(),
8887
child: const Text('Set Google Play Service to availabe'),

lib/src/google_api_availability.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ class GoogleApiAvailability {
5252
return false;
5353
}
5454

55-
final availability = await _methodChannel.invokeMethod(
56-
'makeGooglePlayServicesAvailable');
55+
final availability =
56+
await _methodChannel.invokeMethod('makeGooglePlayServicesAvailable');
5757

5858
return availability;
5959
}

0 commit comments

Comments
 (0)