1

コンテナに画像を追加する必要があります。画像は 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;
  }
4

2 に答える 2

1

I think your _getLocalFile function returns the wrong datatype. Maybe if you try the following:

Future<File> _getLocalFile() async{
  final ImagePicker _picker = ImagePicker();
  PickedFile pickedFile= await _picker.getImage(source: ImageSource.gallery);
  File file =  File(pickedFile.path);
  return file;
}

Futhermore, I don´t belive that you can use a FutureBuilder for the Containers image variable. To display a image inside a Container you can use:

File file;

Container(
  decoration: new BoxDecoration(
    image: new DecorationImage(
      fit: BoxFit.cover,
      image: new FileImage(file),
    ),
  ),
),

So I think you have to check the file variable for null and if it is null, maybe show a button. If the user presses the button, you can call the async _getLocalFile function and than maybe update with setState to show the image.

Maybe you could also wrap the image around a 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),
                ),
              ),
            );
          }
        }
    );
于 2020-06-28T20:04:27.613 に答える