Is there an event that is fired when an app resizes into its new layout?
For instance, i have an app that changes its content depending on the View it is in. When say my app is in the snapped view, im using a listView, but when i 'snap out', the user still sees the app in a snapped state until the heavy computing that it does
to go to the filled/Full View is done. That could take ~1 sec, or more on slower devices. Then in the Snapped state it shows a DIV with some content in it.
So what i want to do is:
1- when snapped out of the snap view, Don't compute anything, but just change the app into a filled View state.
2- Show a loading sign
3-Then execute the heavy code.
So essentially, ,this would be easy to do if there is a "ResizeCompete()" event called when an app has 100% fit into its new space.