gpt4 book ai didi

flutter - 在flutter webview中显示自定义错误页面而不是android返回的默认错误页面

转载 作者:行者123 更新时间:2023-12-03 08:18:21 25 4
gpt4 key购买 nike

我正在为我的Webview应用程序使用flutter_inappwebview插件。
有时,由于网络问题,网页无法加载,并且android在屏幕上显示错误页面,提示找不到页面或超时错误。
我需要替换android返回的默认错误页面的内容。
我可以使用onLoadError方法捕获页面未找到错误。
请指导我使用onLoadError方法更改默认错误页面。

WillPopScope(
onWillPop: onWillPop,
child: InAppWebView(
initialUrl: 'https://myurl.com',
onWebViewCreated: (InAppWebViewController controller) {
webView = controller;
},
onLoadError: (InAppWebViewController controller, String url, int i,
String s) async {
print('CUSTOM_HANDLER: $i, $s');
/** instead of printing the console message i want to render a static page or display static message **/
},
onLoadHttpError: (InAppWebViewController controller, String url,
int i, String s) async {
print('CUSTOM_HANDLER: $i, $s');
/** instead of printing the console message i want to render a static page or display static message **/
},
),
)

最佳答案

如果要保留在WebView范围内,则可以使用自定义错误消息将html文件添加到 Assets 中。但是您也可以使用Stack在其上方显示一个小部件。

使用Widget在顶部带有Stack的选项

InAppWebViewController webViewController;
bool showErrorPage = false;
@override
Widget build(BuildContext context) {
return Container(
child: Stack(
children: <Widget>[
InAppWebView(
initialUrl: 'https://fail.page.asd',
onWebViewCreated: (InAppWebViewController controller) {
webViewController = controller;
},
onLoadError: (
InAppWebViewController controller,
String url,
int i,
String s
) async {
print('CUSTOM_HANDLER: $i, $s');
/** instead of printing the console message i want to render a static page or display static message **/
showError();
},
onLoadHttpError: (InAppWebViewController controller, String url,
int i, String s) async {
print('CUSTOM_HANDLER: $i, $s');
/** instead of printing the console message i want to render a static page or display static message **/
showError();
},
),
showErrorPage ? Center(
child: Container(
color: Colors.white,
alignment: Alignment.center,
height: double.infinity,
width: double.infinity,
child: Text('Page failed to open (WIDGET)'),
),
) : SizedBox(height: 0, width: 0),
],
),
);
}

void showError(){
setState(() {
showErrorPage = true;
});
}

void hideError(){
setState(() {
showErrorPage = false;
});
}
选项用自定义HTML文件替换错误页面
InAppWebViewController webViewController;
bool showErrorPage = false;
@override
Widget build(BuildContext context) {
return Container(
child: InAppWebView(
initialUrl: 'https://fail.page.asd',
onWebViewCreated: (InAppWebViewController controller) {
webViewController = controller;
},
onLoadError: (
InAppWebViewController controller,
String url,
int i,
String s
) async {
print('CUSTOM_HANDLER: $i, $s');
/** instead of printing the console message i want to render a static page or display static message **/
webViewController.loadFile(assetFilePath: "assets/error.html");
},
onLoadHttpError: (InAppWebViewController controller, String url,
int i, String s) async {
print('CUSTOM_HANDLER: $i, $s');
/** instead of printing the console message i want to render a static page or display static message **/
webViewController.loadFile(assetFilePath: "assets/error.html");
},
),
);
}
pubspec.yaml
assets:
- assets/error.html

关于flutter - 在flutter webview中显示自定义错误页面而不是android返回的默认错误页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63121661/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com