Is there a way to show progress indicator during media upload to firestore?

I've looked everywhere and saw that it can be done with flutter i.e.

task.snapshotEvents.listen((TaskSnapshot event) {
  var progress =
      (event.bytesTransferred.toDouble() / event.totalBytes.toDouble()) *
          100;
  print('progress $progress');
});

but couldn't find anything with flutterflow

Any ideas?

5
3 replies