🐙

FirebaseのStrageの使い方(初心者)

2023/06/20に公開

firebaseのStrageの使用方法

URLの取得方法なり

FirebaseStorage storage = FirebaseStorage.instance;
const filePath = 'test/file';
final storageRef = storage.ref().child(filePath);
final downloadData = await storageRef.getDownloadURL();

あとは取得した downloadDataをURLランチャーなりで表示すればおけ

Discussion