Skip to content

Commit

Permalink
[google_maps_flutter] Fix detection of WebAssembly compatibility (flu…
Browse files Browse the repository at this point in the history
  • Loading branch information
kevmoo authored Nov 15, 2024
1 parent 319fe77 commit 7dd395e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
5 changes: 3 additions & 2 deletions packages/google_maps_flutter/google_maps_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## NEXT
## 2.10.0

* Updates minimum supported SDK version to Flutter 3.19/Dart 3.3.
* Updates minimum supported SDK version to Flutter 3.22/Dart 3.4.
* Fixes detection of WebAssembly support on package site.

## 2.9.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
library google_maps_flutter;

import 'dart:async';
import 'dart:io';

import 'package:flutter/foundation.dart';
import 'package:flutter/gestures.dart';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -594,7 +594,6 @@ class _GoogleMapState extends State<GoogleMap> {

/// Builds a [MapConfiguration] from the given [map].
MapConfiguration _configurationFromMapWidget(GoogleMap map) {
assert(!map.liteModeEnabled || Platform.isAndroid);
return MapConfiguration(
webGestureHandling: map.webGestureHandling,
compassEnabled: map.compassEnabled,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: google_maps_flutter
description: A Flutter plugin for integrating Google Maps in iOS and Android applications.
repository: https://github.com/flutter/packages/tree/main/packages/google_maps_flutter/google_maps_flutter
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+maps%22
version: 2.9.0
version: 2.10.0

environment:
sdk: ^3.4.0
Expand Down

0 comments on commit 7dd395e

Please sign in to comment.