firefile 0.6.3 copy "firefile: ^0.6.3" to clipboard
firefile: ^0.6.3 copied to clipboard

The Firefile package makes it easy to control the display of the Firestore file download progress.

Firefile #

This package makes it easy to control the display of the Firestore file download progress.

Getting started #

Make sure that all Firebase requirements are installed.

Usage #

  1. Initialize FirefileController:
  controller = FirefileController();
  1. Use Firefile in the widget tree, providing the required controller initialized above and tileBuilder:
Firefile(
  controller: controller,
  tileBuilder: (task) {
    return ListTile(
      title: Text(task.fileName),
      trailing: _buildTrailing(task.state), // Full example in `example/` folder
    );
  },
),
  1. It works! 🎉
6
likes
130
points
92
downloads

Publisher

unverified uploader

Weekly Downloads

The Firefile package makes it easy to control the display of the Firestore file download progress.

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

bloc, firebase_storage, flutter, flutter_bloc, freezed_annotation

More

Packages that depend on firefile