cloud_storage 0.1.1
cloud_storage: ^0.1.1 copied to clipboard
Cloud file/folder/link storage for Flutter — umbrella package re-exporting the interface and the default Firebase implementation.
cloud_storage #
Cloud file/folder storage for Flutter. Umbrella package — depend on this from app code.
import 'package:cloud_storage/cloud_storage.dart';
final storage = defaultCloudStorage(
firestorePath: 'users/$uid/nodes',
storagePath: 'users/$uid/blobs',
);
The package is auth-agnostic and makes no assumption about where in Firestore / Storage your data lives — you supply both paths.
See the monorepo README for the full architecture and the Firebase implementation for setup and security rules.