This repository was archived by the owner on Feb 22, 2023. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: in_app_purchase
22description : A Flutter plugin for in-app purchases. Exposes APIs for making in-app purchases through the App Store and Google Play.
33repository : https://github.com/flutter/plugins/tree/main/packages/in_app_purchase/in_app_purchase
44issue_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
77environment :
88 sdk : " >=2.12.0 <3.0.0"
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: in_app_purchase_android
22description : An implementation for the Android platform of the Flutter `in_app_purchase` plugin. This uses the Android BillingClient APIs.
33repository : https://github.com/flutter/plugins/tree/main/packages/in_app_purchase/in_app_purchase_android
44issue_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
77environment :
88 sdk : " >=2.14.0 <3.0.0"
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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 (
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: in_app_purchase_storekit
22description : An implementation for the iOS and macOS platforms of the Flutter `in_app_purchase` plugin. This uses the StoreKit Framework.
33repository : https://github.com/flutter/plugins/tree/main/packages/in_app_purchase/in_app_purchase_storekit
44issue_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
77environment :
88 sdk : " >=2.14.0 <3.0.0"
You can’t perform that action at this time.
0 commit comments