mirror of
https://github.com/Iconica-Development/flutter_google_track_and_trace.git
synced 2025-05-19 05:03:45 +02:00
chore: update version to 1.1.0
This commit is contained in:
parent
f1e30f1a15
commit
555837905c
4 changed files with 9 additions and 6 deletions
|
@ -1,3 +1,7 @@
|
||||||
## 0.0.1
|
1.1.0
|
||||||
|
* Feature: Optional parameter `retrieveDirections` to disable directions api calls
|
||||||
|
* Fix: Issue with json conversion google map theme.
|
||||||
|
|
||||||
* TODO: Describe initial release.
|
1.0.2
|
||||||
|
|
||||||
|
* Minor fixes
|
|
@ -158,7 +158,7 @@ packages:
|
||||||
path: ".."
|
path: ".."
|
||||||
relative: true
|
relative: true
|
||||||
source: path
|
source: path
|
||||||
version: "1.0.1"
|
version: "1.1.0"
|
||||||
html:
|
html:
|
||||||
dependency: transitive
|
dependency: transitive
|
||||||
description:
|
description:
|
||||||
|
@ -333,5 +333,5 @@ packages:
|
||||||
source: hosted
|
source: hosted
|
||||||
version: "2.1.4"
|
version: "2.1.4"
|
||||||
sdks:
|
sdks:
|
||||||
dart: ">=2.18.0 <4.0.0"
|
dart: ">=2.18.0 <3.0.0"
|
||||||
flutter: ">=3.0.0"
|
flutter: ">=3.0.0"
|
||||||
|
|
|
@ -172,7 +172,6 @@ class _GoogleTrackTraceMapState extends State<GoogleTrackTraceMap> {
|
||||||
if (widget.mapStylingTheme != null) {
|
if (widget.mapStylingTheme != null) {
|
||||||
ctr.setMapStyle(widget.mapStylingTheme!.getJson()).onError(
|
ctr.setMapStyle(widget.mapStylingTheme!.getJson()).onError(
|
||||||
(error, stackTrace) async {
|
(error, stackTrace) async {
|
||||||
print(error);
|
|
||||||
throw GoogleMapsException(error.toString());
|
throw GoogleMapsException(error.toString());
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
name: google_track_trace
|
name: google_track_trace
|
||||||
description: An Iconica Flutter pluginin for Track & Trace Package
|
description: An Iconica Flutter pluginin for Track & Trace Package
|
||||||
version: 1.0.2
|
version: 1.1.0
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ">=2.14.0 <3.0.0"
|
sdk: ">=2.14.0 <3.0.0"
|
||||||
|
|
Loading…
Reference in a new issue