Maksym Moros
Maksym Moros

Reputation: 529

Flutter Web: firebase_storage: MissingPluginException No implementation found for method StorageReference#putData

I am trying to upload an image in UInt8List format to firebase storage. I am using "StorageReference.putData". I keep getting this error saying that putFile isn't defined. I have updated to all the lated firebase packages and still no success. Is putData not possible on Flutter Web?

I have tried to update all packages and then 'flutter clean', 'flutter packages get'

The reason I am not using "putFile" is because Flutter Web doesn't support dart:io which holds the specific File class required for using putFile.

The Error:

Error: MissingPluginException(No implementation found for method StorageReference#putData on channel plugins.flutter.io/firebase_storage)
    at Object.throw_ [as throw] (http://localhost:60357/dart_sdk.js:4331:11)
    at MethodChannel._invokeMethod (http://localhost:60357/packages/flutter/src/services/system_channels.dart.lib.js:942:21)
    at _invokeMethod.next (<anonymous>)
    at http://localhost:60357/dart_sdk.js:37593:33
    at _RootZone.runUnary (http://localhost:60357/dart_sdk.js:37447:58)
    at _FutureListener.thenAwait.handleValue (http://localhost:60357/dart_sdk.js:32424:29)
    at handleValueCallback (http://localhost:60357/dart_sdk.js:32971:49)
    at Function._propagateToListeners (http://localhost:60357/dart_sdk.js:33009:17)
    at _Future.new.[_completeWithValue] (http://localhost:60357/dart_sdk.js:32852:23)
    at async._AsyncCallbackEntry.new.callback (http://localhost:60357/dart_sdk.js:32874:35)
    at Object._microtaskLoop (http://localhost:60357/dart_sdk.js:37708:13)
    at _startMicrotaskLoop (http://localhost:60357/dart_sdk.js:37714:13)
    at http://localhost:60357/dart_sdk.js:33226:9

My upload function:

  Future<StorageTaskSnapshot> uploadImage(Uint8List imageFile, int pos) {
    return storageRef
        .child("posts/${currentUser.uid}/$_postId/$pos.jpg")
        .putData(imageFile)
        .onComplete;
  }

Upvotes: 3

Views: 5609

Answers (2)

Th&#224;o A Vảng
Th&#224;o A Vảng

Reputation: 565

flutter clean

flutter pub get

Then run app again.

Upvotes: 2

broken.eggshell
broken.eggshell

Reputation: 1024

I finally got this to work after hybridizing several other people's answers. I start with an image from image_picker_for_web:

final picker = ImagePicker();
final new_image = await picker.getImage(
    source: source=='gallery' ? ImageSource.gallery : ImageSource.camera,
);

Then:

String url;
var bytes = await new_image.readAsBytes();
try {
    fb.StorageReference _storage = fb.storage().ref('002test');
    fb.UploadTaskSnapshot uploadTaskSnapshot = await _storage.put(bytes, fb.UploadMetadata(contentType: 'image/png')).future;
    var imageUri = await uploadTaskSnapshot.ref.getDownloadURL();
    url = imageUri.toString();
} catch (e) {
    print(e);
}

This was the SO that pointed me in the right direction: Flutter Web Upload to Firestore

Upvotes: 4

Related Questions