0% found this document useful (0 votes)
2 views1 page

Flutter Web App HTML Structure

This document is an HTML template for a Flutter web application. It includes metadata for character set, compatibility, and viewport settings, as well as links to a manifest file and a JavaScript file for the main application. The script specifies the Flutter web renderer to be used as 'html'.

Uploaded by

mbokojeremie809
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views1 page

Flutter Web App HTML Structure

This document is an HTML template for a Flutter web application. It includes metadata for character set, compatibility, and viewport settings, as well as links to a manifest file and a JavaScript file for the main application. The script specifies the Flutter web renderer to be used as 'html'.

Uploaded by

mbokojeremie809
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

<!

DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<meta http-equiv="X-UA-Compatible" content="IE=edge">

<meta name="viewport" content="width=device-width, initial-


scale=1.0">

<title>Flutter App</title>

<link rel="manifest" href="[Link]">

<script>

// Ceci est un fichier de démarrage Flutter Web.

[Link] = 'html';

</script>

</head>

<body>

<script src="[Link]" type="application/javascript"></script>

</body>

</html>

You might also like