Hi to everyone!
I’m new to the Ionic world but i’m trying to use Ionic Storage to save some user informations when he is logged inside the app so when he will open it again, the app gets the data from the storage without calling again my web api.
This is what i usually do:
storage.set('myvalue', value);
and in my homepage i do:
storage.get('myvalue').then((value) => {
//use value
});
but if i want my app to wait until for example 10 elements are loaded?
Any suggestions?
Thank you!