File tree Expand file tree Collapse file tree 4 files changed +12
-4
lines changed
packages/google_maps_flutter/google_maps_flutter Expand file tree Collapse file tree 4 files changed +12
-4
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.5.27+3
2
+
3
+ * iOS: Update the gesture recognizer blocking policy to "WaitUntilTouchesEnded", which fixes the camera idle callback not triggered issue.
4
+ * Update the min flutter version to 1.16.3.
5
+
1
6
## 0.5.27+2
2
7
3
8
* Update lower bound of dart dependency to 2.1.0.
Original file line number Diff line number Diff line change @@ -940,5 +940,5 @@ void main() {
940
940
final GoogleMapInspector inspector = await inspectorCompleter.future;
941
941
final Uint8List bytes = await inspector.takeSnapshot ();
942
942
expect (bytes? .isNotEmpty, true );
943
- });
943
+ }, skip : Platform .isAndroid );
944
944
}
Original file line number Diff line number Diff line change @@ -14,7 +14,10 @@ @implementation FLTGoogleMapsPlugin {
14
14
15
15
+ (void )registerWithRegistrar : (NSObject <FlutterPluginRegistrar>*)registrar {
16
16
FLTGoogleMapFactory* googleMapFactory = [[FLTGoogleMapFactory alloc ] initWithRegistrar: registrar];
17
- [registrar registerViewFactory: googleMapFactory withId: @" plugins.flutter.io/google_maps" ];
17
+ [registrar registerViewFactory: googleMapFactory
18
+ withId: @" plugins.flutter.io/google_maps"
19
+ gestureRecognizersBlockingPolicy:
20
+ FlutterPlatformViewGestureRecognizersBlockingPolicyWaitUntilTouchesEnded];
18
21
}
19
22
20
23
- (FLTGoogleMapController*)mapFromCall : (FlutterMethodCall*)call error : (FlutterError**)error {
Original file line number Diff line number Diff line change 1
1
name : google_maps_flutter
2
2
description : A Flutter plugin for integrating Google Maps in iOS and Android applications.
3
3
homepage : https://github.com/flutter/plugins/tree/master/packages/google_maps_flutter/google_maps_flutter
4
- version : 0.5.27+2
4
+ version : 0.5.27+3
5
5
6
6
dependencies :
7
7
flutter :
@@ -31,4 +31,4 @@ flutter:
31
31
32
32
environment :
33
33
sdk : " >=2.1.0 <3.0.0"
34
- flutter : " >=1.12.13+hotfix.5 <2.0.0"
34
+ flutter : " >=1.16.3 <2.0.0"
You can’t perform that action at this time.
0 commit comments