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
120
pub points
37%
popularity

Publisher

unverified uploader

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

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

bloc, firebase_storage, flutter, flutter_bloc, freezed_annotation

More

Packages that depend on firefile