iosWebViewFix/example/web/page.html

36 lines
1.0 KiB
HTML
Raw Normal View History

2022-04-22 00:24:50 +00:00
<!DOCTYPE html>
<html>
<head>
<base href="$FLUTTER_BASE_HREF">
<meta charset="UTF-8">
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
<meta name="description" content="Demonstrates how to use the flutter_inappwebview plugin.">
<!-- iOS meta tags & icons -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="flutter_inappwebview_example">
<link rel="apple-touch-icon" href="icons/Icon-192.png">
<!-- Favicon -->
<link rel="icon" type="image/png" href="favicon.png"/>
2022-04-27 14:59:49 +00:00
<title>page</title>
2022-04-22 00:24:50 +00:00
<link rel="manifest" href="manifest.json">
</head>
2022-04-25 10:15:53 +00:00
<body style="min-height: 3000px;min-width: 3000px;">
2022-04-22 00:24:50 +00:00
<h1>Simple Page 1</h1>
<a href="/page-2.html">Go to page 2</a>
2022-04-22 11:39:21 +00:00
<br>
<a href="/heavy-page.html">Go to heavy-page</a>
<script>
window.addEventListener('load', function (event) {
setTimeout(function () {
console.log('test');
});
});
</script>
2022-04-22 00:24:50 +00:00
</body>
</html>