1

我正在从图库中选择图像,然后将其上传到服务器上,然后在成功上传后我点击一个 API 以从服务器检索相同的图像并希望在同一个 ImageView 中显示该图像我正在使用Image.file来加载单击的图像和 Image.network显示网络图像,但我想要一件事来加载图像

4

1 回答 1

2

试试这个,只需设置一个boolen isProfileImageIsURL,如果它是 true 则显示 NetworkImage 小部件,否则 FileImage

isProfileImageIsURL ? NetworkImage(profileImageURL) : FileImage(_profilePictureFile);
于 2019-12-26T12:10:43.900 回答