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

Commit d39e756

Browse files
authored
[in_app_purchase] Prep for more const widgets (#7030)
1 parent 3843b38 commit d39e756

File tree

9 files changed

+17
-5
lines changed

9 files changed

+17
-5
lines changed

packages/in_app_purchase/in_app_purchase/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 3.1.3
2+
3+
* Ignores a lint in the example app for backwards compatibility.
4+
15
## 3.1.2
26

37
* Updates example code for `use_build_context_synchronously` lint.

packages/in_app_purchase/in_app_purchase/example/lib/main.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,8 @@ class _MyAppState extends State<_MyApp> {
164164
}
165165
if (_purchasePending) {
166166
stack.add(
167+
// TODO(goderbauer): Make this const when that's available on stable.
168+
// ignore: prefer_const_constructors
167169
Stack(
168170
children: const <Widget>[
169171
Opacity(

packages/in_app_purchase/in_app_purchase/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: in_app_purchase
22
description: A Flutter plugin for in-app purchases. Exposes APIs for making in-app purchases through the App Store and Google Play.
33
repository: https://github.com/flutter/plugins/tree/main/packages/in_app_purchase/in_app_purchase
44
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+in_app_purchase%22
5-
version: 3.1.2
5+
version: 3.1.3
66

77
environment:
88
sdk: ">=2.12.0 <3.0.0"

packages/in_app_purchase/in_app_purchase_android/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
## NEXT
1+
## 0.2.4
22

33
* Updates minimum Flutter version to 3.0.
4+
* Ignores a lint in the example app for backwards compatibility.
45

56
## 0.2.3+9
67

packages/in_app_purchase/in_app_purchase_android/example/lib/main.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,8 @@ class _MyAppState extends State<_MyApp> {
156156
}
157157
if (_purchasePending) {
158158
stack.add(
159+
// TODO(goderbauer): Make this const when that's available on stable.
160+
// ignore: prefer_const_constructors
159161
Stack(
160162
children: const <Widget>[
161163
Opacity(

packages/in_app_purchase/in_app_purchase_android/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: in_app_purchase_android
22
description: An implementation for the Android platform of the Flutter `in_app_purchase` plugin. This uses the Android BillingClient APIs.
33
repository: https://github.com/flutter/plugins/tree/main/packages/in_app_purchase/in_app_purchase_android
44
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+in_app_purchase%22
5-
version: 0.2.3+9
5+
version: 0.2.4
66

77
environment:
88
sdk: ">=2.14.0 <3.0.0"

packages/in_app_purchase/in_app_purchase_storekit/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
## NEXT
1+
## 0.3.5
22

33
* Updates minimum Flutter version to 3.0.
4+
* Ignores a lint in the example app for backwards compatibility.
45

56
## 0.3.4+1
67

packages/in_app_purchase/in_app_purchase_storekit/example/lib/main.dart

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,8 @@ class _MyAppState extends State<_MyApp> {
156156
}
157157
if (_purchasePending) {
158158
stack.add(
159+
// TODO(goderbauer): Make this const when that's available on stable.
160+
// ignore: prefer_const_constructors
159161
Stack(
160162
children: const <Widget>[
161163
Opacity(

packages/in_app_purchase/in_app_purchase_storekit/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: in_app_purchase_storekit
22
description: An implementation for the iOS and macOS platforms of the Flutter `in_app_purchase` plugin. This uses the StoreKit Framework.
33
repository: https://github.com/flutter/plugins/tree/main/packages/in_app_purchase/in_app_purchase_storekit
44
issue_tracker: https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+in_app_purchase%22
5-
version: 0.3.4+1
5+
version: 0.3.5
66

77
environment:
88
sdk: ">=2.14.0 <3.0.0"

0 commit comments

Comments
 (0)