This repository was archived by the owner on Feb 22, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 12 files changed +32
-0
lines changed
google_maps_flutter/google_maps_flutter
url_launcher/url_launcher Expand file tree Collapse file tree 12 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 11## NEXT
22
33* Updates minimum Flutter version to 3.0.
4+ * Ignores a lint in the tests for backwards compatibility.
45
56## 2.2.3
67
Original file line number Diff line number Diff line change @@ -29,8 +29,12 @@ void main() {
2929 ) async {
3030 // Inject two map widgets...
3131 await tester.pumpWidget (
32+ // TODO(goderbauer): Make this const when that's available on stable.
33+ // ignore: prefer_const_constructors
3234 Directionality (
3335 textDirection: TextDirection .ltr,
36+ // TODO(goderbauer): Make this const when that's available on stable.
37+ // ignore: prefer_const_constructors
3438 child: Column (
3539 children: const < Widget > [
3640 GoogleMap (
Original file line number Diff line number Diff line change 11## NEXT
22
33* Updates minimum Flutter version to 3.0.
4+ * Ignores a lint in the example app for backwards compatibility.
45
56## 2.1.3
67
Original file line number Diff line number Diff line change @@ -183,6 +183,8 @@ class _MyAppState extends State<MyApp> {
183183 if (_isAuthenticating)
184184 ElevatedButton (
185185 onPressed: _cancelAuthentication,
186+ // TODO(goderbauer): Make this const when that's available on stable.
187+ // ignore: prefer_const_constructors
186188 child: Row (
187189 mainAxisSize: MainAxisSize .min,
188190 children: const < Widget > [
@@ -196,6 +198,8 @@ class _MyAppState extends State<MyApp> {
196198 children: < Widget > [
197199 ElevatedButton (
198200 onPressed: _authenticate,
201+ // TODO(goderbauer): Make this const when that's available on stable.
202+ // ignore: prefer_const_constructors
199203 child: Row (
200204 mainAxisSize: MainAxisSize .min,
201205 children: const < Widget > [
Original file line number Diff line number Diff line change 11## NEXT
22
33* Updates minimum Flutter version to 3.0.
4+ * Ignores a lint in the example app for backwards compatibility.
45
56## 1.0.17
67
Original file line number Diff line number Diff line change @@ -188,6 +188,8 @@ class _MyAppState extends State<MyApp> {
188188 if (_isAuthenticating)
189189 ElevatedButton (
190190 onPressed: _cancelAuthentication,
191+ // TODO(goderbauer): Make this const when that's available on stable.
192+ // ignore: prefer_const_constructors
191193 child: Row (
192194 mainAxisSize: MainAxisSize .min,
193195 children: const < Widget > [
@@ -201,6 +203,8 @@ class _MyAppState extends State<MyApp> {
201203 children: < Widget > [
202204 ElevatedButton (
203205 onPressed: _authenticate,
206+ // TODO(goderbauer): Make this const when that's available on stable.
207+ // ignore: prefer_const_constructors
204208 child: Row (
205209 mainAxisSize: MainAxisSize .min,
206210 children: const < Widget > [
Original file line number Diff line number Diff line change 11## NEXT
22
33* Updates minimum Flutter version to 3.0.
4+ * Ignores a lint in the example app for backwards compatibility.
45
56## 1.0.12
67
Original file line number Diff line number Diff line change @@ -187,6 +187,8 @@ class _MyAppState extends State<MyApp> {
187187 if (_isAuthenticating)
188188 ElevatedButton (
189189 onPressed: _cancelAuthentication,
190+ // TODO(goderbauer): Make this const when that's available on stable.
191+ // ignore: prefer_const_constructors
190192 child: Row (
191193 mainAxisSize: MainAxisSize .min,
192194 children: const < Widget > [
@@ -200,6 +202,8 @@ class _MyAppState extends State<MyApp> {
200202 children: < Widget > [
201203 ElevatedButton (
202204 onPressed: _authenticate,
205+ // TODO(goderbauer): Make this const when that's available on stable.
206+ // ignore: prefer_const_constructors
203207 child: Row (
204208 mainAxisSize: MainAxisSize .min,
205209 children: const < Widget > [
Original file line number Diff line number Diff line change 11## NEXT
22
33* Updates minimum Flutter version to 3.0.
4+ * Ignores a lint in the example app for backwards compatibility.
45
56## 1.0.5
67
Original file line number Diff line number Diff line change @@ -150,6 +150,8 @@ class _MyAppState extends State<MyApp> {
150150 if (_isAuthenticating)
151151 ElevatedButton (
152152 onPressed: _cancelAuthentication,
153+ // TODO(goderbauer): Make this const when that's available on stable.
154+ // ignore: prefer_const_constructors
153155 child: Row (
154156 mainAxisSize: MainAxisSize .min,
155157 children: const < Widget > [
@@ -163,6 +165,8 @@ class _MyAppState extends State<MyApp> {
163165 children: < Widget > [
164166 ElevatedButton (
165167 onPressed: _authenticate,
168+ // TODO(goderbauer): Make this const when that's available on stable.
169+ // ignore: prefer_const_constructors
166170 child: Row (
167171 mainAxisSize: MainAxisSize .min,
168172 children: const < Widget > [
You can’t perform that action at this time.
0 commit comments