1<!DOCTYPE html> 2<html lang="en"> 3 <head> 4 <meta charset="utf-8" /> 5 <meta httpequiv="X-UA-Compatible" content="IE=edge" /> 6 <meta 7 name="viewport" 8 content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1.00001,viewport-fit=cover" 9 /> 10 <title>Expo APIs</title> 11 <style> 12 #root, 13 body, 14 html { 15 width: 100%; 16 -webkit-overflow-scrolling: touch; 17 margin: 0; 18 padding: 0; 19 min-height: 100%; 20 } 21 #root { 22 flex-shrink: 0; 23 flex-basis: auto; 24 flex-grow: 1; 25 display: flex; 26 flex: 1; 27 } 28 html { 29 scroll-behavior: smooth; 30 -webkit-text-size-adjust: 100%; 31 height: 100%; 32 } 33 body { 34 display: flex; 35 overflow-y: auto; 36 overscroll-behavior-y: none; 37 text-rendering: optimizeLegibility; 38 -webkit-font-smoothing: antialiased; 39 -moz-osx-font-smoothing: grayscale; 40 -ms-overflow-style: scrollbar; 41 } 42 </style> 43 <meta name="theme-color" content="#cccccc" /> 44 <meta 45 name="description" 46 content="This demonstrates a bunch of the native components that you can use in React Native core and Expo." 47 /> 48 <link rel="manifest" href="/manifest.json" /> 49 <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16.png" /> 50 <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32.png" /> 51 <link rel="shortcut icon" href="/favicon.ico" /> 52 <meta name="mobile-web-app-capable" content="yes" /> 53 <meta name="apple-mobile-web-app-capable" content="yes" /> 54 <meta name="apple-touch-fullscreen" content="yes" /> 55 <meta name="apple-mobile-web-app-title" content="Expo APIs" /> 56 <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" /> 57 <link 58 rel="apple-touch-icon" 59 sizes="180x180" 60 href="/pwa/apple-touch-icon/apple-touch-icon-180.png" 61 /> 62 </head> 63 <body> 64 <noscript 65 ><form 66 action="" 67 style="background-color:#fff;position:fixed;top:0;left:0;right:0;bottom:0;z-index:9999" 68 > 69 <div 70 style="font-size:18px;font-family:Helvetica,sans-serif;line-height:24px;margin:10%;width:80%" 71 > 72 <p>Oh no! It looks like JavaScript is not enabled in your browser.</p> 73 <p style="margin:20px 0"> 74 <button 75 type="submit" 76 style="background-color:#4630eb;border-radius:100px;border:none;box-shadow:none;color:#fff;cursor:pointer;font-weight:700;line-height:20px;padding:6px 16px" 77 > 78 Reload 79 </button> 80 </p> 81 </div> 82 </form></noscript 83 > 84 <div id="root"></div> 85 </body> 86</html> 87