All Questions
218 questions
0
votes
2
answers
78
views
Firebase Storage error: [firebase_storage/object-not-found] No object exists at desired reference. why that code can't upload images to firebasestore
I am new to work with firebase. ı am treying to develop an app which tere is profe page for users. to get banner iamge from the user ı wrote the code below.
File? _bannerImage;
Future<void> ...
0
votes
1
answer
41
views
Unsupport Operation System uploading image to Firebase on Flutter web
I had read documentations (here and others sites), but I can not still load an image from FIREBASE. I can insert data, update it and so, but no image.
The project is in Flutter WEB and I am testing it ...
1
vote
2
answers
50
views
strorageException error in flutter how to fix?
I get the following FirebaseException on creating a new account:
W/StorageUtil(22184): Error getting App Check token; using placeholder token instead. Error: com.google.firebase.FirebaseException: ...
0
votes
0
answers
45
views
Search Bar makes the CPU GO OVER 100% ON iOS - flutter app
import 'package:flutter/material.dart';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:firebase_storage/firebase_storage.dart'; // Import for Firebase Storage
import 'package:...
0
votes
1
answer
61
views
Error uploading profile picture: [firebase_storage/object-not-found] No object exists at the desired reference
Hello everyone I need help with this , I'm trying to add a profile picture for my registred users and save the profile pic in firebase :
imported files here
class ProfilePage extends StatefulWidget ...
0
votes
1
answer
46
views
Flutter Firebase: How to show multiple Images from Storage?
I have this Function:
Future<void> listImages(String childcode) async {
firebase_storage.ListResult result =
await firebase_storage.FirebaseStorage.instance.ref('/images/$childcode')....
1
vote
1
answer
130
views
Firebase Storage putFile/putData not working
I'm trying to upload image from my flutter app to firebase storage.
final _avatars = AvatarService();
Future _pickImage(BuildContext context) async{
final img = await ImagePicker().pickImage(...
0
votes
0
answers
44
views
Firebase putFile() method confusion, how this method works
Recently i have met a lot of questions about a problem with uploading say 'image to firebase'.
This can be done by putFile() method.
according to asynchronous programming concept if the async method ...
0
votes
4
answers
628
views
firebase_storage/channel-error Unable to establish connection on channel
I'm trying to connect Firebase Storage to my flutter project. But I got an error
[ERROR:flutter/runtime/dart_vm_initializer.cc(41)] Unhandled
Exception: [firebase_storage/channel-error] Unable to ...
0
votes
1
answer
470
views
W/StorageTask : unable to change internal state to: INTERNAL_STATE_CANCELED, INTERNAL_STATE_CANCELING isUser: true from state:INTERNAL_STATE_SUCCESS
I am getting this error in flutter project, while Downloading the image to firebase.
Error:
[1] W/StorageTask( 5144): unable to change internal state to: INTERNAL_STATE_CANCELED, ...
1
vote
1
answer
155
views
W/StorageUtil( 9633): Error getting App Check token; using placeholder token instead
I am trying to make a chat app with flutter and firebase,i have a problem with sending images, when i save the image and then try to get it with the getDownloadURL() the app shows many errors i don't ...
0
votes
1
answer
82
views
Is there a way to limit the amount of bytes downloaded from a FirebaseStorage file
I am making an app that has the feature of listening to audio from others. It has a recorder so people can submit their audio.
On the homepage, I would like to have a widget where only a portion of an ...
3
votes
1
answer
687
views
Instance of 'ClientException': type 'ClientException' is not a subtype of type 'JavaScriptObject' data assigned
Future<void> getArticles() async {
final QuerySnapshot querySnapshot = await collectionReference.get();
final articles = <ArticleModel>[];
for (final doc in querySnapshot.docs)...
0
votes
1
answer
94
views
flutter filepicker upload to firebase cloud storage won't work
Future<String?> uploadImageOld () async {
FilePickerResult? result = await FilePicker.platform.pickFiles();
if (result != null) {
final storageRef = FirebaseStorage.instance.ref();
...
2
votes
0
answers
66
views
Downloads from Firebase Storage always time out
I've got a Dart application which is attempting to download from Firebase Storage. Here's the specific lines of code which do the download:
var storageRef = FirebaseStorage.instance.ref('gs://...