iosWebViewFix/flutter_inappwebview/example/web/page.html

37 lines
1.1 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">
2022-04-30 19:22:31 +00:00
<meta name="theme-color" content="#0175C2">
2022-04-22 00:24:50 +00:00
<!-- 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-30 19:22:31 +00:00
<body style="min-height: 3000px; min-width: 3000px;">
2022-04-22 00:24:50 +00:00
<h1>Simple Page 1</h1>
2022-04-30 19:22:31 +00:00
<a href="/page-2.html" id="link-page-2">Go to page 2</a>
2022-04-22 11:39:21 +00:00
<br>
2022-04-30 19:22:31 +00:00
<a href="/heavy-page.html" id="link-heavy-page">Go to heavy-page</a>
<script>
window.addEventListener('load', function (event) {
setTimeout(function () {
2022-04-28 17:29:01 +00:00
console.log('message');
});
});
</script>
2022-04-22 00:24:50 +00:00
</body>
</html>