Unverified Commit 7cc3f842 authored by Mateus Felipe C. C. Pinto's avatar Mateus Felipe C. C. Pinto Committed by GitHub

Fix samples of ExactAssetImage (#79721)

parent f789acae
...@@ -1006,9 +1006,11 @@ class MemoryImage extends ImageProvider<MemoryImage> { ...@@ -1006,9 +1006,11 @@ class MemoryImage extends ImageProvider<MemoryImage> {
/// ///
/// Then, to fetch the image and associate it with scale `1.5`, use: /// Then, to fetch the image and associate it with scale `1.5`, use:
/// ///
/// {@tool snippet}
/// ```dart /// ```dart
/// AssetImage('icons/heart.png', scale: 1.5) /// const ExactAssetImage('icons/heart.png', scale: 1.5)
/// ``` /// ```
/// {@end-tool}
/// ///
/// ## Assets in packages /// ## Assets in packages
/// ///
...@@ -1016,9 +1018,11 @@ class MemoryImage extends ImageProvider<MemoryImage> { ...@@ -1016,9 +1018,11 @@ class MemoryImage extends ImageProvider<MemoryImage> {
/// For instance, suppose the structure above is inside a package called /// For instance, suppose the structure above is inside a package called
/// `my_icons`. Then to fetch the image, use: /// `my_icons`. Then to fetch the image, use:
/// ///
/// {@tool snippet}
/// ```dart /// ```dart
/// AssetImage('icons/heart.png', scale: 1.5, package: 'my_icons') /// const ExactAssetImage('icons/heart.png', scale: 1.5, package: 'my_icons')
/// ``` /// ```
/// {@end-tool}
/// ///
/// Assets used by the package itself should also be fetched using the [package] /// Assets used by the package itself should also be fetched using the [package]
/// argument as above. /// argument as above.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment