How to get html of EPUB by page in flutter?

833 Views Asked by At

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?

1

There are 1 best solutions below

2
On

Try this package epub_parser

You can fetch html like the following

// Enumerating chapters
epubBook.Chapters.forEach((EpubChapter chapter) {
          
  // HTML content of current chapter
  String chapterHtmlContent = chapter.HtmlContent;

});