我需要在容器中添加图像。图像来自IMAGE PICKER。 我收到错误消息:
type 'FutureBuilder<File>' is not a subtype of type 'ImageProvider<dynamic>'
这是原始代码:
Container( //<-- HEADER CONTAINER
height: kHeaderHeight,
width: kHeaderWidth,
decoration:
BoxDecoration(
image: DecorationImage(
image:
_imageFileForHeader.path != null?
FutureBuilder(
future: _getLocalFile(_imageFileForHeader.path),
builder: (BuildContext context, AsyncSnapshot<io.File> snapshot)
{
return Image.file(snapshot.data);
}
):
NetworkImage(urlImage + _kHeaderImage), fit: BoxFit.cover,
),
),
我真的可以在这里提供任何帮助。
如果用户未从图库中选择图片,请在URL(urlImage)中使用图片。
我认为我正在执行一个非常标准的例程,所以我看不出为什么它不起作用。
谢谢
-我只想补充一点,我也尝试过:
return FileImage(snapshot.data)
这也不起作用。
我想我在这里尽了所有可能的排列。
顺便说一下,这是_getLocalFile ...
Future<io.File> _getLocalFile(String filename) async
{
io.File f = new io.File(filename);
return f;
}
答案 0 :(得分:2)
_getLocalFile
中不需要任何将来,因为其中没有异步操作。你可以做
return Container( //<-- HEADER CONTAINER
height: kHeaderHeight,
width: kHeaderWidth,
decoration:
BoxDecoration(
image: DecorationImage(
image: _imageFileForHeader?.path != null
? Image.file(File(_imageFileForHeader.path))
: Image.network(urlImage + _kHeaderImage);
),
),
或者假设_imageFileForHeader
已经是一个文件,我们可以进一步简化它
return Container( //<-- HEADER CONTAINER
height: kHeaderHeight,
width: kHeaderWidth,
decoration:
BoxDecoration(
image: DecorationImage(
image: _imageFileForHeader != null
? Image.file(_imageFileForHeader)
: Image.network(urlImage + _kHeaderImage);
),
),
答案 1 :(得分:1)
我认为您的_getLocalFile
函数返回了错误的数据类型。也许您尝试以下操作:
Future<File> _getLocalFile() async{
final ImagePicker _picker = ImagePicker();
PickedFile pickedFile= await _picker.getImage(source: ImageSource.gallery);
File file = File(pickedFile.path);
return file;
}
还有,我不相信您可以将FutureBuilder用于Containers图像变量。要在容器中显示图像,可以使用:
File file;
Container(
decoration: new BoxDecoration(
image: new DecorationImage(
fit: BoxFit.cover,
image: new FileImage(file),
),
),
),
所以我认为您必须检查文件变量是否为null,如果为null,则可能显示一个按钮。如果用户按下按钮,则可以调用async _getLocalFile函数,然后可以使用setState更新以显示图像。
也许您也可以将图像包装在FutureBuilder周围:
FutureBuilder<File>(
future: _getLocalFile(),
builder: (BuildContext context, AsyncSnapshot<File> snapshot)
{
if(!snapshot.hasData){
return CircularProgressIndicator();
}else{
return Container(
decoration: new BoxDecoration(
image: new DecorationImage(
fit: BoxFit.cover,
image: new FileImage(snapshot.data),
),
),
);
}
}
);