firebase_storage_image 0.4.0 copy "firebase_storage_image: ^0.4.0" to clipboard
firebase_storage_image: ^0.4.0 copied to clipboard

Flutter's ImageProvider to use images in Firebase Cloud Storage directly for Image, CircleAvatar, ImageIcon, and something like that.

firebase_storage_image #

pub package

Flutter's ImageProvider for images in Firebase Cloud Storage.

Getting Started #

FirebaseStorageImage implements ImageProvider. So you can use this directly for Image, CircleAvatar, ImageIcon, and something like that.

Example #

import 'package:flutter/material.dart';
import 'package:firebase_storage_image/firebase_storage_image.dart';

class YourCircleAvatar extends StatelessWidget {
  @override
  Widget build(BuildContext context) => const CircleAvatar(
        backgroundImage: FirebaseStorageImage(
          'gs://project-12345.appspot.com/path/to/avatar_image.png',
        ),
      );
}

License #

MIT

Contribution #

I need your help improving this package with leaving Pull Requests and Issues!

2
likes
40
points
25
downloads

Publisher

verified publisherkohei.dev

Weekly Downloads

Flutter's ImageProvider to use images in Firebase Cloud Storage directly for Image, CircleAvatar, ImageIcon, and something like that.

Repository (GitHub)
View/report issues

License

MIT (license)

Dependencies

firebase_core, firebase_storage, flutter

More

Packages that depend on firebase_storage_image