-
-
Notifications
You must be signed in to change notification settings - Fork 917
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug:
The <hr>
tag no longer produces a horizontal line as expected although the vertical spacing is now even. I caught this issue using https://pub.dev/packages/golden_toolkit so maybe it could be applied to this package to mitigate future regressions.
HTML to reproduce the issue:
<p>First Paragraph</p><hr><p>Second Paragraph</p>
Html
widget configuration:
import 'package:flutter/material.dart';
import 'package:flutter_html/flutter_html.dart';
void main() {
final data = '<p>First Paragraph</p><hr><p>Second Paragraph</p>';
final app = MaterialApp(
home: ColoredBox(color: Colors.white, child: Html(data: data)),
);
return runApp(app);
}
v2.0.0 | v2.1.0 |
---|---|
![]() |
![]() |
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working