The most obvious solution would be to simply save the PDF and display it in Flutter with e.g. flutter_pdfview. If you prefer to save text, I know three solutions off the top of my head:
- You can save Markdown and simply use flutter_markdown to display it. In my opinion, this is the best approach if Markdown is sufficient for you.
- You can save HTML and use e.g. flutter_widget_from_html to display it.
- You can also create your own solution, e.g. with styled_text.