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+
15## 0.5.31
26
37* Geodesic Polyline support for iOS
Original file line number Diff line number Diff line change 55// ignore_for_file: public_member_api_docs
66
77import 'package:flutter/material.dart' ;
8- import 'package:google_maps_flutter/google_maps_flutter.dart' ;
98import 'package:flutter/services.dart' show rootBundle;
9+ import 'package:google_maps_flutter/google_maps_flutter.dart' ;
1010
1111import 'page.dart' ;
1212
@@ -206,7 +206,7 @@ class MapUiBodyState extends State<MapUiBody> {
206206 Widget _myLocationToggler () {
207207 return FlatButton (
208208 child: Text (
209- '${_myLocationButtonEnabled ? 'disable' : 'enable' } my location button ' ),
209+ '${_myLocationEnabled ? 'disable' : 'enable' } my location marker ' ),
210210 onPressed: () {
211211 setState (() {
212212 _myLocationEnabled = ! _myLocationEnabled;
Original file line number Diff line number Diff line change 11name : google_maps_flutter
22description : A Flutter plugin for integrating Google Maps in iOS and Android applications.
33homepage : https://github.com/flutter/plugins/tree/master/packages/google_maps_flutter/google_maps_flutter
4- version : 0.5.31
4+ version : 0.5.32
55
66dependencies :
77 flutter :
You can’t perform that action at this time.
0 commit comments