Skip to content

Commit 1d83588

Browse files
[Docs] - Fix copy/paste mistake in display-images.md (attempt 2)
1 parent e2d8739 commit 1d83588

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/website/source/flutters-implementation/display-images.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ void testWidgets("load a file image", (tester) async {
8181
MyApp(
8282
// File images are globally key'd on their `File`, so you don't have to
8383
// pass the same `ImageProvider` that you used to load the image.
84-
child: Image.network(File("path/to/my_image.png")),
84+
child: Image.file(File("path/to/my_image.png")),
8585
),
8686
);
8787
});

0 commit comments

Comments
 (0)