index.html 2.16 KB
<!DOCTYPE html>
<html>
<head>
  <meta charset="UTF-8">
  <meta content="IE=Edge" http-equiv="X-UA-Compatible">
  <!-- Primary Meta Tags -->
  <title>Flutter Modal Bottom Sheets</title>
  <meta name="title" content="Flutter Modal Bottom Sheets">
  <meta name="description" content="Build advanced modals. Cupertino, material or create your own">

  <!-- Open Graph / Facebook -->
  <meta property="og:type" content="website">
  <meta property="og:url" content="https://jamesblasco.github.io/modal_bottom_sheet/">
  <meta property="og:title" content="Flutter Modal Bottom Sheets">
  <meta property="og:description" content="Build advanced modals. Cupertino, material or create your own">
  <meta property="og:image" content="https://jamesblasco.github.io/modal_bottom_sheet/icons/image.png">

  <!-- Twitter -->
  <meta property="twitter:card" content="summary_large_image">
  <meta property="twitter:url" content="https://jamesblasco.github.io/modal_bottom_sheet/">
  <meta property="twitter:title" content="Flutter Modal Bottom Sheets">
  <meta property="twitter:description" content="Build advanced modals. Cupertino, material or create your own">
  <meta property="og:image" content="https://jamesblasco.github.io/modal_bottom_sheet/icons/image.png">

  <!-- 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="example">
  <link rel="apple-touch-icon" href="/icons/Icon-192.png">

  <!-- Favicon -->
  <link rel="shortcut icon" type="image/png" href="/favicon.png"/>

  <link rel="manifest" href="/manifest.json">
</head>
<body>
  <!-- This script installs service_worker.js to provide PWA functionality to
       application. For more information, see:
       https://developers.google.com/web/fundamentals/primers/service-workers -->
  <script>
    if ('serviceWorker' in navigator) {
      window.addEventListener('load', function () {
        navigator.serviceWorker.register('flutter_service_worker.js', {
        scope: './'
         });
      });
    }
  </script>
  <script src="main.dart.js" type="application/javascript"></script>
</body>
</html>