Back to Flutter Boost

onPageShow method

doc/api/page_visibility/PageVisibilityObserver/onPageShow.html

5.0.2589 B
Original Source

onPageShow method

voidonPageShow()

Tip:If you want to do things when page is created, please in your StatefulWidget's State and write your code in initState method to initialize

And If you want to do things when page is destory, please write code in the dispose method

It can be regarded as Android "onResume" or iOS "viewDidAppear"

Implementation

/// It can be regarded as Android "onResume" or iOS "viewDidAppear"
void onPageShow() {}