html_content_measurer 1.0.1
html_content_measurer: ^1.0.1 copied to clipboard
A utility for measuring the height of dynamically rendered HTML content in web applications.
example/html_content_measurer_example.dart
import 'package:html_content_measurer/html_content_measurer.dart';
void main() async {
const testContent = '<div style="height: 200px;"></div>';
var awesome = await measureHtmlContent(testContent);
print('awesome: 232: $awesome');
}