I'm doing a react native app and I finally found out that my app is too big because of the many many images I have in there can someone please help me through this issue. Thanks, everyone I don't know if I can show all my code here
I try Firebase storage but it never worked because I was not able to render the images from Firebase storage
that's the code I used
var storage = firebase.storage();
var storageRef = storage.ref();
var starsRef = storageRef.child('images/stars.jpg');
starsRef.getDownloadURL().then(url => {
<insert here whatever code you would like, url is the image link)
}).catch(error => {
<catch errors here if you want>
}
I don't know how to use it for many images without repeating this code
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…