htmleez 0.1.8 copy "htmleez: ^0.1.8" to clipboard
htmleez: ^0.1.8 copied to clipboard

HTML easy. A lightweight library for creating HTML programmatically in Dart.

example/htmleez_example.dart

import 'package:htmleez/htmleez.dart';

void main() {
  final component = html([
    body([
      id("main_body"),
      h1(["Hello HTMLEEZ".t]),
    ]),
  ]);

  final renderer = HtmlRenderer();

  final s = renderer.render(component);

  print(s);
}
2
likes
0
points
318
downloads

Publisher

verified publishernamzug.dev

Weekly Downloads

HTML easy. A lightweight library for creating HTML programmatically in Dart.

License

unknown (license)

Dependencies

collection

More

Packages that depend on htmleez