Skip to content

Instantly share code, notes, and snippets.

@PlugFox
Last active June 7, 2022 23:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PlugFox/622339f7eac3dd0326ad134de6e7cd95 to your computer and use it in GitHub Desktop.
Save PlugFox/622339f7eac3dd0326ad134de6e7cd95 to your computer and use it in GitHub Desktop.
Dart Pad with html index.html
<h1 id="header">empty</h1>
/// https://dart.dev/tutorials/web/low-level-html/connect-dart-html
import 'dart:html';
void main() {
final header = querySelector('#header');
header?.text = "Hello, World!";
}
body {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: absolute;
width: 100%;
height: 100%;
}
h1 {
color: white;
font-family: Arial, Helvetica, sans-serif;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment