我正在使用以下基本身份验证加载网页:
@override
Widget build(BuildContext context) {
return new WebviewScaffold(
appBar: new AppBar(
title: new Text(“Web View”),
centerTitle: true,
backgroundColor: Colors.red[900],
elevation: 0.0,
),
url: widget.url,
withJavascript: true,
withZoom: false,
clearCookies: true,
headers: {‘Authorization’: ‘Basic ’ + base64Encode(utf8.encode(‘$widget.user:$widget.pass’))},
);
}
对于另一个URL,我想发出一个发布请求并发送参数,WebviewScaffold是否可能?