英文:
Unable to show a network image in a Built Flutter web app
问题
我的图像都托管在阿里云,我可以在本地开发模式下成功显示图像,但在Web构建中无法显示图像。
以下是图像链接和代码:
Container(
child: Image.network(
ImageList[index].image_path,
fit: BoxFit.contain),
),
有什么想法?
英文:
My images are all hosted in AliCloud, I can show the image successfully in local developing mode, but failed to display the image in a web build.
Here is the image link and the code:
Container(
child: Image.network(
ImageList[index].image_path,
fit: BoxFit.contain),
),
Any ideas?
答案1
得分: 4
Sure, here is the translation:
使用HTML渲染器:
flutter build web --release --web-renderer html
或者
flutter run --web-renderer html
英文:
use html renderer:
flutter build web --release --web-renderer html
or
flutter run --web-renderer html
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论