Files
flame/examples/web/index.html
Lukas Klingsbo aa52a2a58d fix: RouterComponent should be on top (#3524)
To get the `WorldRoute` and `world` to work well with other components,
the `RouterComponent` needs to be on top.

This also fixes a small deprecation in the index.html file for the
examples.
2025-03-13 07:48:13 +05:30

25 lines
794 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta content="IE=Edge" http-equiv="X-UA-Compatible">
<meta name="description" content="A set of small game examples showcasing each feature provided by the Flame Engine">
<base href="$FLUTTER_BASE_HREF">
<!-- 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="Flame Examples">
<link rel="apple-touch-icon" href="icons/Icon-192.png">
<!-- Favicon -->
<link rel="icon" type="image/png" href="favicon.png"/>
<title>Flame Examples</title>
<link rel="manifest" href="manifest.json">
</head>
<body>
<script src="flutter_bootstrap.js" async></script>
</body>
</html>