File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed
packages/google_maps_flutter/google_maps_flutter Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.5.32
2
+
3
+ * Fix typo in google_maps_flutter/example/map_ui.dart.
4
+
1
5
## 0.5.31
2
6
3
7
* Geodesic Polyline support for iOS
Original file line number Diff line number Diff line change 5
5
// ignore_for_file: public_member_api_docs
6
6
7
7
import 'package:flutter/material.dart' ;
8
- import 'package:google_maps_flutter/google_maps_flutter.dart' ;
9
8
import 'package:flutter/services.dart' show rootBundle;
9
+ import 'package:google_maps_flutter/google_maps_flutter.dart' ;
10
10
11
11
import 'page.dart' ;
12
12
@@ -206,7 +206,7 @@ class MapUiBodyState extends State<MapUiBody> {
206
206
Widget _myLocationToggler () {
207
207
return FlatButton (
208
208
child: Text (
209
- '${_myLocationButtonEnabled ? 'disable' : 'enable' } my location button ' ),
209
+ '${_myLocationEnabled ? 'disable' : 'enable' } my location marker ' ),
210
210
onPressed: () {
211
211
setState (() {
212
212
_myLocationEnabled = ! _myLocationEnabled;
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.31
4
+ version : 0.5.32
5
5
6
6
dependencies :
7
7
flutter :
You can’t perform that action at this time.
0 commit comments