I'm building a web app with image upload features.
I can successfully upload an image to Firebase storage folder named 'uploads' How can I display images in this 'uploaded' folder on HTML using *ngFor? I'm using AngularFire2, Angular 6.
upload() {
const file = this.selectedFiles.item(0);
this.selectedFiles = undefined;
this.currentFileUpload = new FileUpload(file);
this.uploadService.pushFileToStorage(this.currentFileUpload, this.progress);
}
public saveFileData(fileUpload: FileUpload) {
this.db.list(`${this.basePath}/`).push(fileUpload);
}