Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
F
Front-End
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abdullh.alsoleman
Front-End
Commits
5fe32098
Unverified
Commit
5fe32098
authored
Nov 20, 2017
by
xster
Committed by
GitHub
Nov 20, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reverse doc from image providers back to image shorthands (#13074)
parent
9186ba0f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
0 deletions
+20
-0
image_provider.dart
packages/flutter/lib/src/services/image_provider.dart
+16
-0
image_resolution.dart
packages/flutter/lib/src/services/image_resolution.dart
+4
-0
No files found.
packages/flutter/lib/src/services/image_provider.dart
View file @
5fe32098
...
...
@@ -390,6 +390,10 @@ abstract class AssetBundleImageProvider extends ImageProvider<AssetBundleImageKe
/// Fetches the given URL from the network, associating it with the given scale.
///
/// The image will be cached regardless of cache headers from the server.
///
/// See also:
///
/// * [Image.network] for a shorthand of an [Image] widget backed by [NetworkImage].
// TODO(ianh): Find some way to honour cache headers to the extent that when the
// last reference to an image is released, we proactively evict the image from
// our cache if the headers describe the image as having expired at that point.
...
...
@@ -459,6 +463,10 @@ class NetworkImage extends ImageProvider<NetworkImage> {
/// Decodes the given [File] object as an image, associating it with the given
/// scale.
///
/// See also:
///
/// * [Image.file] for a shorthand of an [Image] widget backed by [FileImage].
class
FileImage
extends
ImageProvider
<
FileImage
>
{
/// Creates an object that decodes a [File] as an image.
///
...
...
@@ -523,6 +531,10 @@ class FileImage extends ImageProvider<FileImage> {
/// that changes over time, consider creating a new subclass of [ImageProvider]
/// whose [load] method returns a subclass of [ImageStreamCompleter] that can
/// handle providing multiple images.
///
/// See also:
///
/// * [Image.memory] for a shorthand of an [Image] widget backed by [MemoryImage].
class
MemoryImage
extends
ImageProvider
<
MemoryImage
>
{
/// Creates an object that decodes a [Uint8List] buffer as an image.
///
...
...
@@ -638,6 +650,10 @@ class MemoryImage extends ImageProvider<MemoryImage> {
/// Note that the `lib/` is implied, so it should not be included in the asset
/// path.
///
/// See also:
///
/// * [Image.asset] for a shorthand of an [Image] widget backed by
/// [ExactAssetImage] when using a scale.
class
ExactAssetImage
extends
AssetBundleImageProvider
{
/// Creates an object that fetches the given image from an asset bundle.
///
...
...
packages/flutter/lib/src/services/image_resolution.dart
View file @
5fe32098
...
...
@@ -113,6 +113,10 @@ const String _kAssetManifestFileName = 'AssetManifest.json';
/// Note that the `lib/` is implied, so it should not be included in the asset
/// path.
///
/// See also:
///
/// * [Image.asset] for a shorthand of an [Image] widget backed by [AssetImage]
/// when used without a scale.
class
AssetImage
extends
AssetBundleImageProvider
{
/// Creates an object that fetches an image from an asset bundle.
///
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment