Use NetworkImageWithRetry
instead of Image.network
to load images from the
network with a retry mechanism.
Example:
var avatar = new Image(
image: new NetworkImageWithRetry('http://example.com/avatars/123.jpg'),
);
The retry mechanism may be customized by supplying a custom FetchStrategy
function. FetchStrategyBuilder
is a utility class that helps building fetch
strategy functions.
Please file feature requests and bugs at https://github.com/flutter/flutter/issues.
flutter_test
to dev_dependencies in pubspec.yaml
, and fixed issues
flagged by the analyzer.NetworkImageWithRetry
, an ImageProvider
with a retry mechanism.Add this to your package's pubspec.yaml file:
dependencies:
flutter_image: "^1.0.0"
You can install packages from the command line:
with Flutter:
$ flutter packages get
Alternatively, your editor might support packages get
.
Check the docs for your editor to learn more.
Now in your Dart code, you can use:
import 'package:flutter_image/network.dart';
Version | Uploaded | Documentation | Archive |
---|---|---|---|
1.0.0 | Mar 21, 2018 |
|
|
0.0.3 | Jan 25, 2018 |
|
|
0.0.2 | Sep 18, 2017 |
|
|
0.0.1 | Aug 9, 2017 |
|
|
We analyzed this package on Apr 23, 2018, and provided a score, details, and suggestions below. Analysis was completed with status completed using:
Popularity:
Describes how popular the package is relative to other packages.
[more]
|
92 | / 100 |
Health:
Code health derived from static analysis.
[more]
|
100 | / 100 |
Maintenance:
Reflects how tidy and up-to-date the package is.
[more]
|
100 | / 100 |
Overall score:
Weighted score of the above.
[more]
|
96 |
Detected platforms: Flutter
References Flutter, and has no conflicting libraries.
The description is too short.
Add more detail about the package, what it does and what is its target use case. Try to write at least 60 characters.
Maintain an example.
Create a short demo in the
example/
directory to show how to use this package. Common file name patterns include:main.dart
,example.dart
or you could also useflutter_image.dart
.
Fix analysis and formatting issues.
Analysis or formatting checks reported 1 hint.
Run
flutter format
to formatlib/network.dart
.
Use analysis_options.yaml
.
Rename old
.analysis_options
file toanalysis_options.yaml
.
Package | Constraint | Resolved | Available |
---|---|---|---|
Direct dependencies | |||
Dart SDK | >=2.0.0-dev.28.0 <3.0.0 | ||
flutter | 0.0.0 | ||
Transitive dependencies | |||
collection | 1.14.6 | 1.14.9 | |
meta | 1.1.2 | ||
sky_engine | 0.0.99 | ||
typed_data | 1.1.5 | ||
vector_math | 2.0.6 | ||
Dev dependencies | |||
flutter_test | |||
quiver | >=0.24.0 <2.0.0 | ||
test | any |