universal_html 0.1.0 universal_html: ^0.1.0 copied to clipboard
Supports a subset of 'dart:html' in all platforms (browser, VM, and Flutter).
import "package:universal_html/html.dart";
void main() {
// Create a DOM tree
final element = Element.tag("h1")..appendText("Hello world!");
// Print outer HTML
print(element.outerHtml);
}