iosWebViewFix/example/assets/index.html

42 lines
1.4 KiB
HTML
Raw Normal View History

2018-10-15 23:27:58 +00:00
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
</head>
<body>
<div class="container">
<div class="container">
<img src="images/dart.svg" alt="dart logo">
<div class="row">
<div class="col-sm">
2019-03-12 01:14:30 +00:00
<a href="page-1.html">PAGE 1</a>
2018-10-15 23:27:58 +00:00
</div>
<div class="col-sm">
2019-03-12 01:14:30 +00:00
<a href="page-2.html">PAGE 2</a>
2018-10-15 23:27:58 +00:00
</div>
<div class="col-sm">
2019-03-12 01:14:30 +00:00
<a href="page-3.html">PAGE 3</a>
2018-10-15 23:27:58 +00:00
</div>
</div>
</div>
<script>
window.addEventListener("flutterInAppBrowserPlatformReady", function(event) {
console.log("ready");
window.flutter_inappbrowser.callHandler('handlerTest', 1).then(function(result) {
console.log(result, typeof result);
console.log(JSON.stringify(result));
});
});
2018-10-15 23:27:58 +00:00
</script>
</div>
</body>
</html>