Describe the bug:
in flutter_html, video full screen can't close when toolbarHeight changed
HTML to reproduce the issue:
<video controls> <source src="videoUrl" /> </video>
Html widget configuration:
Scaffold( appBar: AppBar( toolbarHeight: 100 - MediaQuery.of(context).padding.top, centerTitle: true, flexibleSpace: Stack( children: [ Image.network( 'https://dummyimage.com/143x142', height: 100, width: 100, fit: BoxFit.cover, ), ], ), ), body:ListView( children: [ // VideoPlayerScreen('videoUrl'), Html( data: htmlData, ),], ) ))
Expected behavior:
close video full screen when AppBar tollBarHeight changed
Screenshots:
first widget,It's outside flutter_html,the second widget is in flutter_html

A picture of a cute animal (not mandatory but encouraged)
