Skip to content
This repository was archived by the owner on Feb 22, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
[google_maps_flutter] Prefer const constructors.
  • Loading branch information
Michael Klimushyn committed Sep 16, 2019
commit 539585f8a3e3f147f207506779c38340e939a7f8
4 changes: 4 additions & 0 deletions packages/google_maps_flutter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.5.21+2

* Fix more `prefer_const_constructors` analyzer warnings in example app.

## 0.5.21+1

* Fix `prefer_const_constructors` analyzer warnings in example app.
Expand Down
6 changes: 3 additions & 3 deletions packages/google_maps_flutter/example/lib/padding.dart
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class MarkerIconsBodyState extends State<MarkerIconsBody> {
),
),
),
Spacer(),
const Spacer(),
Flexible(
flex: 2,
child: TextField(
Expand All @@ -110,7 +110,7 @@ class MarkerIconsBodyState extends State<MarkerIconsBody> {
),
),
),
Spacer(),
const Spacer(),
Flexible(
flex: 2,
child: TextField(
Expand All @@ -122,7 +122,7 @@ class MarkerIconsBodyState extends State<MarkerIconsBody> {
),
),
),
Spacer(),
const Spacer(),
Flexible(
flex: 2,
child: TextField(
Expand Down
2 changes: 1 addition & 1 deletion packages/google_maps_flutter/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: google_maps_flutter
description: A Flutter plugin for integrating Google Maps in iOS and Android applications.
author: Flutter Team <[email protected]>
homepage: https://github.com/flutter/plugins/tree/master/packages/google_maps_flutter
version: 0.5.21+1
version: 0.5.21+2

dependencies:
flutter:
Expand Down