mirror of
https://github.com/flame-engine/flame.git
synced 2025-10-27 19:13:31 +08:00
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.
25 lines
794 B
HTML
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>
|