Skip to content

Commit 2057761

Browse files
committed
Bumped version number + updated changelog
1 parent 4cc4239 commit 2057761

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.1.4+4
2+
3+
* Fixed various build issues on android and iOS.
4+
15
## 0.1.4+3
26

37
* Updated image resource of README.md.

example/lib/main.dart

-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,6 @@ class _MyHomePageState extends State<MyHomePage> {
5050
],
5151
),
5252
mapType: MapType.satellite,
53-
myLocationEnabled: true,
54-
myLocationButtonEnabled: true,
5553
onTap: (location) => print('onTap: $location'),
5654
onCameraMove: (cameraUpdate) => print('onCameraMove: $cameraUpdate'),
5755
compassEnabled: true,

example/pubspec.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ packages:
143143
path: ".."
144144
relative: true
145145
source: path
146-
version: "0.1.4+3"
146+
version: "0.1.4+4"
147147
quiver:
148148
dependency: transitive
149149
description:

lib/src/platform_maps.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ class PlatformMap extends StatefulWidget {
1919
this.zoomGesturesEnabled = true,
2020
this.tiltGestureEnabled = true,
2121
this.myLocationEnabled = false,
22-
this.myLocationButtonEnabled = true,
22+
this.myLocationButtonEnabled = false,
2323
this.markers,
2424
this.polylines,
2525
this.onCameraMoveStarted,

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: platform_maps_flutter
22
description: A Flutter package that combines google_maps and apple_maps to provide a crossplatform native map implementation.
3-
version: 0.1.4+3
3+
version: 0.1.4+4
44
homepage: https://github.com/LuisThein
55
github: https://github.com/LuisThein/flutter_platform_maps
66

0 commit comments

Comments
 (0)