How do to get the images from Fire base storage using angular fire 2. Thanks a lot!
constructor(public af: AngularFire) {
this.items = af.database.list('/message');
this.picture = af.database.list('/profile');
}
How do to get the images from Fire base storage using angular fire 2. Thanks a lot!
constructor(public af: AngularFire) {
this.items = af.database.list('/message');
this.picture = af.database.list('/profile');
}
Right now there isn't an official integration with AngularFire2 and Firebase Storage. However, it's quite easy to use the regular SDK.
Then in your template
Since you are using AngularFire2, it is a good idea to access firebaseApp (firebase instance) inside AngularFire2 module. Here is the original solution.