Skip to content

skyfet/firefile

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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! 🎉

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published