Async ionViewWillEnter()

I would like to make ionViewWillEnter() async since I want to use await in it to make some operations on the storage. It works but I am curious is it legit practice or it can lead to some errors?

Hi@bambaniasz
You can use settimeout ,but settimeout is not good way :smile:

setTimeout(()=>{
//Do function you want to execute
},500);

Any other solutions? I have been looking for a solution to make ionViewWillEnter async as well, to no avail.