URI的目标不存在:'package:firebase_storage/firebase_storage.dart'

l2osamch  于 2023-06-07  发布在  其他
关注(0)|答案(1)|浏览(183)

我尝试将'firebase_storage'包添加到项目中。但我收到这个错误,虽然我添加了引用pubsec.yaml文件。我尝试了pub get和flutter packages get并重新启动IDE,仍然面临同样的问题:
URI的目标不存在:'package:firebase_storage/firebase_storage. dart'。尝试创建URI引用的文件,或尝试使用URI查找确实存在的文件。

import 'package:firebase_storage/firebase_storage.dart';

当我运行flutter pub get时收到此错误
由于taala依赖于permission_handler >=1.0.1 <6.0.0,而permission_handler>=1.0.1 <6.0.0不支持null安全,版本解析失败。
“sdk:'>=2.0.0-dev.58.0 <3.0.0'“必须为2.12.0或更高版本才能启用空安全性。有关详细信息,请参见https://dart.dev/null-safety
下面是pubspec.yaml文件:

dependencies:
 flutter:
 sdk: flutter
 better_textfield:  

 # The following adds the Cupertino Icons font to your 
 application.
 # Use with the CupertinoIcons class for iOS style icons.
 cupertino_icons: ^1.0.2
 firebase_core: ^2.8.0
 firebase_auth: ^4.3.0
 cloud_firestore: ^4.2.0
 image_picker: ^0.8.7+5
 permission_handler: ^5.0.1+1
 firebase_storage: ^11.2.2
 get:

它现在不适用于我添加包

nxowjjhe

nxowjjhe1#

我发现问题是升级flutter版本:

flutter pub upgrade --major-versions

相关问题