我正在尝试使用flutter和fire base构建我的第一个移动应用程序。当我尝试显示和存储照片时,我遇到了以下问题:
错误:参数类型'Future'无法分配给参数类型'File'。(argument_type_not_assignable在[的助手]lib/main. dart:85)
我可能应该做一些选角,但我不明白如何正确地做这件事。
这是我的未来文件声明:
Future<File> _imageFile;
我正在拍摄屏幕上显示的照片:
setState(() {
_imageFile = ImagePicker.pickImage(source: source);
});
但是我在尝试将照片发送到Firebase时出错:
final StorageUploadTask uploadTask = ref.put(_imageFile);
final Uri downloadUrl = (await uploadTask.future).downloadUrl;
这是我根据代码示例使用的类:
class _MyHomePageState extends State<MyHomePage> {
Future<File> _imageFile;
void _onImageButtonPressed(ImageSource source) async {
GoogleSignIn _googleSignIn = new GoogleSignIn();
var account = await _googleSignIn.signIn();
final GoogleSignInAuthentication googleAuth = await account.authentication;
final FirebaseUser user = await _auth.signInWithGoogle(
accessToken: googleAuth.accessToken,
idToken: googleAuth.idToken,
);
assert(user.email != null);
assert(user.displayName != null);
assert(!user.isAnonymous);
assert(await user.getIdToken() != null);
final FirebaseUser currentUser = await _auth.currentUser();
assert(user.uid == currentUser.uid);
setState(() {
_imageFile = ImagePicker.pickImage(source: source);
});
var random = new Random().nextInt(10000);
var ref = FirebaseStorage.instance.ref().child('image_$random.jpg');
final StorageUploadTask uploadTask = ref.put(_imageFile);
final Uri downloadUrl = (await uploadTask.future).downloadUrl;
}
@override
Widget build(BuildContext context) {
return new Scaffold(
appBar: new AppBar(
title: const Text('Where Assistant'),
),
body: new Center(
child: new FutureBuilder<File>(
future: _imageFile,
builder: (BuildContext context, AsyncSnapshot<File> snapshot) {
debugPrint('test recup image');
print(snapshot);
if (snapshot.connectionState == ConnectionState.done &&
snapshot.data != null) {
return new Image.file(snapshot.data);
} else if (snapshot.error != null) {
return const Text('Error picking image.');
} else {
return const Text('No image so far.');
}
},
),
),
floatingActionButton: new Column(
mainAxisAlignment: MainAxisAlignment.end,
children: <Widget>[
new FloatingActionButton(
onPressed: () => _onImageButtonPressed(ImageSource.gallery),
tooltip: 'Pick an image from gallery',
child: new Icon(Icons.photo_library),
),
new Padding(
padding: const EdgeInsets.only(top: 16.0),
child: new FloatingActionButton(
onPressed: () => _onImageButtonPressed(ImageSource.camera),
tooltip: 'Take a Photo',
child: new Icon(Icons.camera_alt),
),
),
],
),
);
}
}
ref. put
要求一个File
作为参数。你传递的是一个未来
你需要等待未来的结果来打电话。
您可以将代码更改为
final StorageUploadTask uploadTask = ref.put(await _imageFile);
final Uri downloadUrl = (await uploadTask.future).downloadUrl;
或者将_imageFile
改为File
而不是Future
对于那些仍在寻找答案的人来说,同一个错误似乎有不同的原因。就我而言,这是我作为参数传递给不同函数的文件的不同导入语句。在声明和定义的情况下,它应该是同一个文件(导入)。
例如,在dart中不要这样使用:
import 'GitRepoResponse.dart';
import 'GitRowItem.dart';
然后在另一堂课上
import 'package:git_repo_flutter/GitRepoResponse.dart';
import 'package:git_repo_flutter/GitRowItem.dart';
因为
在Dart中,当且仅当两个库使用相同的URI导入时,它们才是相同的。如果使用了两个不同的URI,即使它们解析为同一个文件,它们也将被视为两个不同的库,文件中的类型将出现两次
在这里阅读更多
从插件README.md
Future getImage() async {
var image = await ImagePicker.pickImage(source: ImageSource.camera);
setState(() {
_image = image;
});
}
ImagePicker. picImage()
返回一个Future
。您可以使用async
/await
,如上面的代码所示,从Future
中获取值。