Skip to content

Commit 719dc5f

Browse files
authored
Upgrade to http_image_provider: 0.0.3 (#1253)
1 parent 75b1efb commit 719dc5f

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

pkgs/cronet_http/example/lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ class _BookListState extends State<BookList> {
142142
key: ValueKey(widget.books[index].title),
143143
child: ListTile(
144144
leading: Image(
145-
image: HttpImage(
145+
image: HttpImageProvider(
146146
widget.books[index].imageUrl.replace(scheme: 'https'),
147147
client: context.read<Client>())),
148148
title: Text(widget.books[index].title),

pkgs/cronet_http/example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ dependencies:
1313
flutter:
1414
sdk: flutter
1515
http: ^1.0.0
16-
http_image_provider: ^0.0.2
16+
http_image_provider: ^0.0.3
1717
provider: ^6.1.1
1818

1919
dev_dependencies:

pkgs/cupertino_http/example/lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ class _BookListState extends State<BookList> {
141141
key: ValueKey(widget.books[index].title),
142142
child: ListTile(
143143
leading: Image(
144-
image: HttpImage(
144+
image: HttpImageProvider(
145145
widget.books[index].imageUrl.replace(scheme: 'https'),
146146
client: context.read<Client>())),
147147
title: Text(widget.books[index].title),

pkgs/cupertino_http/example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dependencies:
1616
flutter:
1717
sdk: flutter
1818
http: ^1.0.0
19-
http_image_provider: ^0.0.2
19+
http_image_provider: ^0.0.3
2020
provider: ^6.1.1
2121

2222
dev_dependencies:

pkgs/flutter_http_example/lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ class _BookListState extends State<BookList> {
138138
key: ValueKey(widget.books[index].title),
139139
child: ListTile(
140140
leading: Image(
141-
image: HttpImage(
141+
image: HttpImageProvider(
142142
widget.books[index].imageUrl.replace(scheme: 'https'),
143143
client: context.read<Client>())),
144144
title: Text(widget.books[index].title),

pkgs/flutter_http_example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ dependencies:
1616
flutter:
1717
sdk: flutter
1818
http: ^1.0.0
19-
http_image_provider: ^0.0.2
19+
http_image_provider: ^0.0.3
2020
provider: ^6.0.5
2121

2222
dev_dependencies:

pkgs/ok_http/example/lib/main.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ class _BookListState extends State<BookList> {
138138
key: ValueKey(widget.books[index].title),
139139
child: ListTile(
140140
leading: Image(
141-
image: HttpImage(
141+
image: HttpImageProvider(
142142
widget.books[index].imageUrl.replace(scheme: 'https'),
143143
client: context.read<Client>())),
144144
title: Text(widget.books[index].title),

pkgs/ok_http/example/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies:
1212
flutter:
1313
sdk: flutter
1414
http: ^1.0.0
15-
http_image_provider: ^0.0.2
15+
http_image_provider: ^0.0.3
1616
ok_http:
1717
path: ../
1818
provider: ^6.1.1

0 commit comments

Comments
 (0)