flutter_html icon indicating copy to clipboard operation
flutter_html copied to clipboard

[BUG] SelectableText not working with List (ul, ol)

Open kimmanwky opened this issue 3 years ago • 0 comments

The order list gone after changing Html to SelectableHtml. Used flutter_html: 3.0.0-alpha.5, runs on Android Emulators.

using Html:

Html(
  data: html,
)

image

Using SelectableHtml

SelectableHtml(
  data: html,
)

image

kimmanwky avatar Sep 05 '22 15:09 kimmanwky