Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.

Commit d6fdbbd

Browse files
authored
[google_maps_flutter] Fix typo in User Interface example (#3011)
1 parent 0007ce3 commit d6fdbbd

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
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+
## 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

packages/google_maps_flutter/google_maps_flutter/example/lib/map_ui.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
// ignore_for_file: public_member_api_docs
66

77
import 'package:flutter/material.dart';
8-
import 'package:google_maps_flutter/google_maps_flutter.dart';
98
import 'package:flutter/services.dart' show rootBundle;
9+
import 'package:google_maps_flutter/google_maps_flutter.dart';
1010

1111
import '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;

packages/google_maps_flutter/google_maps_flutter/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: google_maps_flutter
22
description: A Flutter plugin for integrating Google Maps in iOS and Android applications.
33
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
55

66
dependencies:
77
flutter:

0 commit comments

Comments
 (0)