0

I have a segmented control and, in one of its pages, I have a webview. I want to close my web view automatically when I change page from the segmented control. Some suggestion?

Little Monkey
  • 4,165
  • 8
  • 33
  • 69

2 Answers2

0

you may work on the dispose event of your StateFullWidget and close your webview when your component or page disposed :

@override
void dispose() {
  // close the webview here
  super.dispose();
}
0

No need to do dispose, just use Navigator.pushReplacement will take care of all.

ViKi Vyas
  • 514
  • 2
  • 15