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 flutter 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 |
|
|
Popularity:
Describes how popular the package is relative to other packages.
[more]
|
91
|
Health:
Code health derived from static analysis.
[more]
|
100
|
Maintenance:
Reflects how tidy and up-to-date the package is.
[more]
|
72
|
Overall:
Weighted score of the above.
[more]
|
90
|
We analyzed this package on Feb 20, 2019, and provided a score, details, and suggestions below. Analysis was completed with status completed using:
Detected platforms: Flutter
References Flutter, and has no conflicting libraries.
Format lib/network.dart
.
Run flutter format
to format lib/network.dart
.
Use analysis_options.yaml
. (-10 points)
Change the name of your package's .analysis_options
file to analysis_options.yaml
.
analysis-options.yaml
.
Maintain an example. (-10 points)
Create a short demo in the example/
directory to show how to use this package.
Common filename patterns include main.dart
, example.dart
, and flutter_image.dart
. Packages with multiple examples should provide example/README.md
.
For more information see the pub package layout conventions.
The package description is too short. (-8 points)
Add more detail to the description
field of pubspec.yaml
. Use 60 to 180 characters to describe the package, what it does, and its target use case.
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.11 | ||
meta | 1.1.6 | 1.1.7 | |
sky_engine | 0.0.99 | ||
typed_data | 1.1.6 | ||
vector_math | 2.0.8 | ||
Dev dependencies | |||
flutter_test | |||
quiver | >=0.24.0 <2.0.0 | ||
test | any |