Last updated:
0 purchases
firebase storage image
firebase_storage_image #
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',
),
);
}
copied to clipboard
License #
MIT
Contribution #
I need your help improving this package with leaving Pull Requests and Issues!
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.