Questions tagged [flutter-html]

For questions about the Flutter_HTML package: a Flutter widget rendering static HTML and CSS as Flutter widgets.

For questions related to the Flutter_HTML package: https://pub.dev/packages/flutter_html

A Flutter widget rendering static HTML and CSS as Flutter widgets.

For the Flutter cross-platform UI toolkit.

52 questions
0
votes
0 answers

Flutter Html parse. Outter html is not correct

I am parsing Html with html package. I make c = parse(HtmlContent) and for example if I will not change it, just make c.outerHtml() and put it to webView or open it in browser it become this error. It happens because tags inside head isn’t closed.…
0
votes
0 answers

How to prevent Flutter Html rebuild widget?

when I use flutter_html: ^2.2.1 .When I emit state(bloc pattern) in view data in Html widget auto rebuild . Can you help me prevent widget rebuild ? thank a lot
Mr Robin
  • 53
  • 1
  • 6
0
votes
1 answer

why flutter keep rending even through exists page using Navigator.pop(context)

Now my article detail page have some gif animation, I am load the article using flutter html component like this: if (item.content != "") Html( data: item.content, style: { …
Dolphin
  • 29,069
  • 61
  • 260
  • 539
0
votes
0 answers

How to detect text overflow in flutter_html

I have managed to limit html content by using maxlines property of Style and display "show more" text in case the content overflows the maxlines value. Html( data: notifications[index] .longDescription, shrinkWrap: true, style: { 'body': Style(…
Nadeem Haider
  • 160
  • 1
  • 12
0
votes
0 answers

why flutter html keep rendering all the time with no stop when show gif image

Today I found my flutter(2.0.x) app suddenly keep rending with no stopping although the screen not touch or any other opertate. This is what looks like: I found if the flutter html rendered page had gif image, even exit the page, the UI will keep…
Dolphin
  • 29,069
  • 61
  • 260
  • 539
-1
votes
1 answer

How to get html of EPUB by page in flutter?

I want to get the HTML content of an epub file by page. I tried epubx package but it's not working correctly. Has anyone managed to get HTML of an epub by page?
batuhankrbb
  • 598
  • 7
  • 10
-2
votes
1 answer

How to convert html to json in flutter?

My api getting 200 status code and also get html response. so how to convert html data into json data in dart?
1 2 3
4