File tree Expand file tree Collapse file tree 6 files changed +14
-10
lines changed Expand file tree Collapse file tree 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+
15## 0.0.1+1
26
37* 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> {
9494 children: < Widget > [
9595 Text (
9696 'Button tapped $_counter time${_counter == 1 ? '' : 's' }.' ,
97- style: Theme .of (context).textTheme.display1,
9897 key: ValueKey ('CountText' ),
9998 ),
10099 ],
Original file line number Diff line number Diff line change 11name : espresso
22description : Java classes for testing Flutter apps using Espresso.
3- version : 0.0.1+1
3+ version : 0.0.1+2
44homepage : https://github.com/flutter/plugins/espresso
55
66environment :
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+
15## 0.3.0+1
26
3- * Fixing usage example. No functional changes.
7+ * Fixing usage example. No functional changes.
48
59## 0.3.0
610
Original file line number Diff line number Diff line change @@ -213,9 +213,7 @@ class _MyAppState extends State<MyApp> {
213213 if (! _isAvailable) {
214214 return Card ();
215215 }
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' ));
219217 List <ListTile > productList = < ListTile > [];
220218 if (_notFoundIds.isNotEmpty) {
221219 productList.add (ListTile (
@@ -284,9 +282,8 @@ class _MyAppState extends State<MyApp> {
284282 if (! _isAvailable || _notFoundIds.contains (_kConsumableId)) {
285283 return Card ();
286284 }
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' ));
290287 final List <Widget > tokens = _consumables.map ((String id) {
291288 return GridTile (
292289 child: IconButton (
Original file line number Diff line number Diff line change 11name : 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.
33homepage : https://github.com/flutter/plugins/tree/master/packages/in_app_purchase
4- version : 0.3.0+1
4+ version : 0.3.0+2
55
66
77dependencies :
You can’t perform that action at this time.
0 commit comments