What is the equivalent toResume () method in Ionic 2?

While in Android there is Native onResume(), which is part of the activity life cycle . Take a look:

public void onResume() {
    super.onResume();  // Always call the superclass method first    
}

What is the equivalent method for onResume()in Ionic 2?

+4
source share
1 answer

You can use Platform.resumeionic 2 as described here

+5
source

Source: https://habr.com/ru/post/1669949/


All Articles