嘿,有人知道为什么我不能在 ModalBottomSheet 中垂直滚动 WebView 吗?这是我的代码,如果有什么问题请告诉我或给我一些建议。
showModalBottomSheet(
context: context,
isScrollControlled: true,
backgroundColor: Colors.transparent,
builder: (context) => Container(
height: MediaQuery.of(context).size.height * 0.75,
decoration: new BoxDecoration(
color: Colors.white,
borderRadius: new BorderRadius.only(
topLeft: const Radius.circular(25.0),
topRight: const Radius.circular(25.0),
),
),
child: Padding(
padding: EdgeInsets.fromLTRB(0, 23, 0, 0),
child: WebView(
initialUrl: 'https://www.sicepat.com/checkAwb/',
javascriptMode: JavascriptMode.unrestricted,
onWebViewCreated: (controller) {
_myController = controller;
},
onPageFinished: (initialUrl) {
_myController.evaluateJavascript("document.getElementsByClassName('ws-header-container')[0].style.display='none';");
_myController.evaluateJavascript("document.getElementsByClassName('ws-footer-page')[0].style.display='none';");
},
)
),
),
);