Giter VIP home page Giter VIP logo

Comments (3)

awhitford avatar awhitford commented on July 29, 2024

(getBucket is not going to yield the location.) I've taken a closer look at the Firebase Storage API and am truly surprised that one can translate a Url to a StorageReference, but not the other way around -- at least easily.

At the application level, using fully qualified Urls for Firebase Storage is problematic if you want to be able to export/import between databases. Hence, I store relative paths and use StorageReference.child to compute the correct image location... Alas, getting that into a location string requires TWO ASYNC calls. 🤦‍♂️

from firebase_image.

awhitford avatar awhitford commented on July 29, 2024

I managed to get this working fairly well. I reluctantly wrapped a FutureBuilder around the FadeInImage, but since it shows the BlurHash placeholder (same as FadeInImage), it does not create the jank that I was initially worried about.

I still think Firebase Storage needs to improve their API. I opened an issue for them, but I'm not holding my breathe. If they improve their API, I can improve my code.

I still think there is room to revise FirebaseImage to be more StorageReference centric rather than String centric.

from firebase_image.

hassanrehman01398 avatar hassanrehman01398 commented on July 29, 2024

You can give storage reference of folder too.
This is how..
Future downloadFile(String duaName) async {
final Directory tempDir = Directory.systemTemp;
final File file = File('${tempDir.path}/$duaName');
final StorageReference ref = FirebaseStorage.instance.ref().child('FileType.image/').child('$duaName');
String url = await ref.getDownloadURL();
final http.Response downloadData = await http.get(url);
var bodyBytes = downloadData.bodyBytes;

 _scaffoldKey.currentState.showSnackBar(
  SnackBar(
    backgroundColor: Colors.white,
    content: Image.memory(
      bodyBytes,
      fit: BoxFit.fill,
    ),
  ),
);

final StorageFileDownloadTask downloadTask = ref.writeToFile(file);
print(downloadTask.toString());

return url;
}

Hope this is helpful for you.

from firebase_image.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.