Skip to content

Commit 8058fc3

Browse files
[google_maps_flutter] Updates min SDK to 3.29 (#9821)
For the `google_maps_flutter` packages: - Updates the min SDK version to 3.29 - Runs the autoformatter with the new format - Update code excerpts This does not update versions because pushing format changes (even in READMEs) isn't worth doing a release that drops an SDK version (which we don't normally version) Prep for #9816
1 parent 08cbdb3 commit 8058fc3

File tree

206 files changed

+13650
-11644
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

206 files changed

+13650
-11644
lines changed

packages/google_maps_flutter/google_maps_flutter/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## NEXT
2+
3+
* Updates minimum supported SDK version to Flutter 3.29/Dart 3.7.
4+
15
## 2.12.3
26

37
* Updates the example app to use the zIndexInt param instead of the deprecated zIndex.

packages/google_maps_flutter/google_maps_flutter/README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -137,10 +137,11 @@ class MapSampleState extends State<MapSample> {
137137
);
138138
139139
static const CameraPosition _kLake = CameraPosition(
140-
bearing: 192.8334901395799,
141-
target: LatLng(37.43296265331129, -122.08832357078792),
142-
tilt: 59.440717697143555,
143-
zoom: 19.151926040649414);
140+
bearing: 192.8334901395799,
141+
target: LatLng(37.43296265331129, -122.08832357078792),
142+
tilt: 59.440717697143555,
143+
zoom: 19.151926040649414,
144+
);
144145
145146
@override
146147
Widget build(BuildContext context) {
@@ -165,6 +166,7 @@ class MapSampleState extends State<MapSample> {
165166
await controller.animateCamera(CameraUpdate.newCameraPosition(_kLake));
166167
}
167168
}
169+
168170
```
169171

170172
See the `example` directory for a complete sample app.

0 commit comments

Comments
 (0)