poor_web 2025.5.8
poor_web: ^2025.5.8 copied to clipboard
light web wrapper library.
example/poor_web_example.dart
import 'package:poor_web/poor_web.dart';
void main() {
document
.querySelector('#app')
?.replaceWith(
HTMLDivElement()..appendAll([
HTMLHeadingElement.h1()..append(Text('Hello, Dart Web!')),
HTMLParagraphElement()
..append(Text('This is a simple web application.')),
]),
);
}