File tree 4 files changed +18
-3
lines changed
packages/google_maps_flutter/google_maps_flutter_web
4 files changed +18
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.5.6+1
2
+
3
+ * Fixes an issue where ` dart:js_interop ` object literal factories did not
4
+ compile with dart2js.
5
+
1
6
## 0.5.6
2
7
3
8
* Adds support for ` MapConfiguration.style ` .
Original file line number Diff line number Diff line change 2
2
// Use of this source code is governed by a BSD-style license that can be
3
3
// found in the LICENSE file.
4
4
5
+ // TODO(srujzs): Needed for https://github.com/dart-lang/sdk/issues/54801. Once
6
+ // we publish a version with a min SDK constraint that contains this fix,
7
+ // remove.
8
+ @JS ()
9
+ library ;
10
+
5
11
import 'dart:js_interop' ;
6
12
7
13
import 'package:web/web.dart' as web;
Original file line number Diff line number Diff line change 2
2
// Use of this source code is governed by a BSD-style license that can be
3
3
// found in the LICENSE file.
4
4
5
+ // TODO(srujzs): Needed for https://github.com/dart-lang/sdk/issues/54801. Once
6
+ // we publish a version with a min SDK constraint that contains this fix,
7
+ // remove.
8
+ @JS ()
9
+ library ;
10
+
5
11
import 'dart:js_interop' ;
6
12
7
13
/// The interop type for a Google Maps Map Styler.
8
14
///
9
15
/// See: https://developers.google.com/maps/documentation/javascript/style-reference#stylers
10
16
@JS ()
11
- @staticInterop
12
- @anonymous
13
17
extension type MapStyler ._(JSObject _) implements JSObject {
14
18
/// Create a new [MapStyler] instance.
15
19
external factory MapStyler ({
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: google_maps_flutter_web
2
2
description : Web platform implementation of google_maps_flutter
3
3
repository : https://github.com/flutter/packages/tree/main/packages/google_maps_flutter/google_maps_flutter_web
4
4
issue_tracker : https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+maps%22
5
- version : 0.5.6
5
+ version : 0.5.6+1
6
6
7
7
environment :
8
8
sdk : ^3.3.0
You can’t perform that action at this time.
0 commit comments