File tree 6 files changed +14
-10
lines changed
6 files changed +14
-10
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.0.1+2
2
+
3
+ * Update te example app to avoid using deprecated api.
4
+
1
5
## 0.0.1+1
2
6
3
7
* Updates to README to avoid unnecessary imports and warnings.
Original file line number Diff line number Diff line change @@ -94,7 +94,6 @@ class _MyHomePageState extends State<_MyHomePage> {
94
94
children: < Widget > [
95
95
Text (
96
96
'Button tapped $_counter time${_counter == 1 ? '' : 's' }.' ,
97
- style: Theme .of (context).textTheme.display1,
98
97
key: ValueKey ('CountText' ),
99
98
),
100
99
],
Original file line number Diff line number Diff line change 1
1
name : espresso
2
2
description : Java classes for testing Flutter apps using Espresso.
3
- version : 0.0.1+1
3
+ version : 0.0.1+2
4
4
homepage : https://github.com/flutter/plugins/espresso
5
5
6
6
environment :
Original file line number Diff line number Diff line change
1
+ ## 0.3.0+2
2
+
3
+ * Update te example app to avoid using deprecated api.
4
+
1
5
## 0.3.0+1
2
6
3
- * Fixing usage example. No functional changes.
7
+ * Fixing usage example. No functional changes.
4
8
5
9
## 0.3.0
6
10
Original file line number Diff line number Diff line change @@ -213,9 +213,7 @@ class _MyAppState extends State<MyApp> {
213
213
if (! _isAvailable) {
214
214
return Card ();
215
215
}
216
- final ListTile productHeader = ListTile (
217
- title: Text ('Products for Sale' ,
218
- style: Theme .of (context).textTheme.headline));
216
+ final ListTile productHeader = ListTile (title: Text ('Products for Sale' ));
219
217
List <ListTile > productList = < ListTile > [];
220
218
if (_notFoundIds.isNotEmpty) {
221
219
productList.add (ListTile (
@@ -284,9 +282,8 @@ class _MyAppState extends State<MyApp> {
284
282
if (! _isAvailable || _notFoundIds.contains (_kConsumableId)) {
285
283
return Card ();
286
284
}
287
- final ListTile consumableHeader = ListTile (
288
- title: Text ('Purchased consumables' ,
289
- style: Theme .of (context).textTheme.headline));
285
+ final ListTile consumableHeader =
286
+ ListTile (title: Text ('Purchased consumables' ));
290
287
final List <Widget > tokens = _consumables.map ((String id) {
291
288
return GridTile (
292
289
child: IconButton (
Original file line number Diff line number Diff line change 1
1
name : in_app_purchase
2
2
description : A Flutter plugin for in-app purchases. Exposes APIs for making in-app purchases through the App Store and Google Play.
3
3
homepage : https://github.com/flutter/plugins/tree/master/packages/in_app_purchase
4
- version : 0.3.0+1
4
+ version : 0.3.0+2
5
5
6
6
7
7
dependencies :
You can’t perform that action at this time.
0 commit comments