Skip to content

Commit

Permalink
Fix NetworkImage
Browse files Browse the repository at this point in the history
  • Loading branch information
PlugFox committed Dec 26, 2023
1 parent ccbdf2d commit df2bf5f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion example/lib/src/feature/shop/widget/product_screen.dart
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,7 @@ class _ProductPhotosListViewState extends State<_ProductPhotosListView> {
ImageProvider<Object> _getImageProvider(String path) =>
(!kIsWeb || Config.environment.isDevelopment
? AssetImage(path)
: NetworkImage('/$inProgress')) as ImageProvider<Object>;
: NetworkImage('/$path')) as ImageProvider<Object>;

@override
Widget build(BuildContext context) => ShaderMask(
Expand Down

0 comments on commit df2bf5f

Please sign in to comment.